Add missing template for the new DMs section
This commit is contained in:
parent
25d5ad2176
commit
ecada8480e
1 changed files with 20 additions and 0 deletions
20
templates/direct_messages.html
Normal file
20
templates/direct_messages.html
Normal file
|
@ -0,0 +1,20 @@
|
|||
{% extends "layout.html" %}
|
||||
{% import 'utils.html' as utils %}
|
||||
{% block title %}DMs - {{ config.NAME }}{% endblock %}
|
||||
{% block header %}
|
||||
|
||||
{% endblock %}
|
||||
{% block content %}
|
||||
<div id="container">
|
||||
<div id="direct_messages" style="margin-top:50px;">
|
||||
|
||||
{% for thread in threads %}
|
||||
<h4><a href="/admin/thread?oid={{thread.oid}}">With {{ ", ".join(thread.participants) }}</a>
|
||||
<small class="lcolor">{{ thread.len }} message{% if thread.len > 1 %}s{% endif %}</small>
|
||||
</h4>
|
||||
{{ utils.display_note(thread.last_reply.activity.object, meta=thread.last_reply.meta) }}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
{% endblock %}
|
Loading…
Reference in a new issue