home » zplus/clif.git
ID: 25166b2c4ba8319a185db8f78b893cdedebeef8d
18 lines — 474B — 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[:-10], thread_id=thread.id) }}">{{ thread.title }}</a>
            </div>
            <div class="subtitle">
                Created {{ thread.datetime|ago }}
            </div>
        </div>
    {% endfor %}
    </div>

{% endblock %}