aboutsummaryrefslogblamecommitdiffstats
path: root/templates/list.html
blob: ecb70994b844bbcfd0416d7592afc97b99689098 (plain) (tree)
1
2
3
4
5
6
7






                                
{% extends "base.html" %}

{% block content %}
    {% for bug in bugs %}
        <p>{{ bug.summary }}</p>
    {% endfor %}
{% endblock %}