forked from leftypol/leftypol
a lot more improvements
This commit is contained in:
parent
ac2837c620
commit
a610458720
40 changed files with 986 additions and 271 deletions
36
templates/mod/inbox.html
Normal file
36
templates/mod/inbox.html
Normal file
|
@ -0,0 +1,36 @@
|
|||
{% if messages|count == 0 %}
|
||||
<p style="text-align:center" class="unimportant">({% trans 'No private messages for you.' %})</p>
|
||||
{% else %}
|
||||
<table class="modlog">
|
||||
<tr>
|
||||
<th>{% trans 'ID' %}</th>
|
||||
<th>{% trans 'From' %}</th>
|
||||
<th>{% trans 'Date' %}</th>
|
||||
<th>{% trans 'Message snippet' %}</th>
|
||||
</tr>
|
||||
{% for message in messages %}
|
||||
<tr{% if message.unread %} style="font-weight:bold"{% endif %}>
|
||||
<td class="minimal">
|
||||
<a href="?/PM/{{ message.id }}">
|
||||
{{ message.id }}
|
||||
</a>
|
||||
</td>
|
||||
<td class="minimal">
|
||||
{% if message.username %}
|
||||
<a href="?/new_PM/{{ message.username|e }}">{{ message.username|e }}</a>
|
||||
{% else %}
|
||||
<em>{% trans 'deleted?' %}</em>
|
||||
{% endif %}
|
||||
</td>
|
||||
<td class="minimal">
|
||||
{{ message.time|date(config.post_date) }}
|
||||
</td>
|
||||
<td>
|
||||
<a href="?/PM/{{ message.id }}">
|
||||
{{ message.snippet }}
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</table>
|
||||
{% endif %}
|
Loading…
Add table
Add a link
Reference in a new issue