Commit 32e09cde1f4bee059022d2c4a4085bec37405b4f
1 parent
f340ec6f
Exists in
master
and in
39 other branches
Adding else stmt if anonymous user - closes #125
Showing
1 changed file
with
2 additions
and
0 deletions
Show diff stats
src/super_archives/templates/message-preview.html
... | ... | @@ -56,6 +56,8 @@ |
56 | 56 | <span>{{ result.fullname }}</span> |
57 | 57 | {% endif %} |
58 | 58 | </span> |
59 | + {% else %} | |
60 | + <span class="pull-left">{% trans "by" %} {% trans "Anonymous" %}</span> | |
59 | 61 | {% endif %} |
60 | 62 | {% if result.modified %} |
61 | 63 | <span class="pull-right">{{ result.modified|localtime|timesince }} {% trans "ago" %}</span> | ... | ... |