diff options
author | Philip Sargent <philip.sargent@gmail.com> | 2025-01-24 02:33:42 +0000 |
---|---|---|
committer | Philip Sargent <philip.sargent@gmail.com> | 2025-01-24 02:33:42 +0000 |
commit | fedcc6d201df8a474105ee1032430e9fbd401b11 (patch) | |
tree | 153e881731cdba88ba1f935a8989adb53212ff3f /templates | |
parent | 61722fd6c065f491770568eb0aad57194ce13d61 (diff) | |
download | troggle-fedcc6d201df8a474105ee1032430e9fbd401b11.tar.gz troggle-fedcc6d201df8a474105ee1032430e9fbd401b11.tar.bz2 troggle-fedcc6d201df8a474105ee1032430e9fbd401b11.zip |
whack a mole
Diffstat (limited to 'templates')
-rw-r--r-- | templates/login/frontpage.html (renamed from templates/errors/frontpage.html) | 0 | ||||
-rw-r--r-- | templates/people_ids.html | 12 |
2 files changed, 10 insertions, 2 deletions
diff --git a/templates/errors/frontpage.html b/templates/login/frontpage.html index 461bce9..461bce9 100644 --- a/templates/errors/frontpage.html +++ b/templates/login/frontpage.html diff --git a/templates/people_ids.html b/templates/people_ids.html index ae89337..7a9b727 100644 --- a/templates/people_ids.html +++ b/templates/people_ids.html @@ -15,7 +15,15 @@ <tr><th>Person</th><th>troggle ID</th></tr> {% for person in persons %} <tr> - <td style="padding: 3px">{{person.fullname|safe}}</td> + <td style="padding: 3px"> + {% if person.user %} + <span style="color:red"> + {% else %} + <span> + {% endif %} + {{person.fullname|safe}} + </span> + </td> <td style="padding: 3px"><a href="{{ person.get_absolute_url }}">{{person|safe}}</a></td> @@ -26,5 +34,5 @@ {% endfor %} </tr> </table> - +<p>People with their <span style="color:red">names in red </span> have a registered login and email address. {% endblock %} |