The version of vichan running on lainchan.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
955B

  1. {% if messages|count == 0 %}
  2. <p style="text-align:center" class="unimportant">({% trans 'No private messages for you.' %})</p>
  3. {% else %}
  4. <table class="modlog">
  5. <tr>
  6. <th>{% trans 'ID' %}</th>
  7. <th>{% trans 'From' %}</th>
  8. <th>{% trans 'Date' %}</th>
  9. <th>{% trans 'Message snippet' %}</th>
  10. </tr>
  11. {% for message in messages %}
  12. <tr{% if message.unread %} style="font-weight:bold"{% endif %}>
  13. <td class="minimal">
  14. <a href="?/PM/{{ message.id }}">
  15. {{ message.id }}
  16. </a>
  17. </td>
  18. <td class="minimal">
  19. {% if message.username %}
  20. <a href="?/new_PM/{{ message.username|e }}">{{ message.username|e }}</a>
  21. {% else %}
  22. <em>{% trans 'deleted?' %}</em>
  23. {% endif %}
  24. </td>
  25. <td class="minimal">
  26. {{ message.time|date(config.post_date) }}
  27. </td>
  28. <td>
  29. <a href="?/PM/{{ message.id }}">
  30. {{ message.snippet }}
  31. </a>
  32. </td>
  33. </tr>
  34. {% endfor %}
  35. </table>
  36. {% endif %}