home » zplus/clif.git
ID: ac36efc438f7622db3729d02f53fe24e4cac51a9
25 lines — 760B — 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">
                #{{ thread.id }}
                Created {{ thread.datetime|ago }}
                
                {% if 'label' in thread['tags'] %}
                    {% for label in thread['tags']['label'] %}
                        <span class="tag">{{ label }}</span>
                    {% endfor %}
                {% endif %}
            </div>
        </div>
    {% endfor %}
    </div>

{% endblock %}