ID: 0b55ebfc6ddc9e0b709200a7664fc2906e53d8f6
18 lines
—
473B —
View raw
| {% extends "mailing_list/mailing_list.html" %}
{% block content %}
<div class="threads">
{% for thread in threads %}
<div>
<div class="title">
<a href="{{ url('thread', repository=repository[:-4], thread_id=thread.id) }}">{{ thread.title }}</a>
</div>
<div class="subtitle">
Created {{ thread.datetime|ago }}
</div>
</div>
{% endfor %}
</div>
{% endblock %}
|