diff options
author | Filipp Lepalaan <f@230.to> | 2014-02-17 14:40:45 +0200 |
---|---|---|
committer | Filipp Lepalaan <f@230.to> | 2014-02-17 14:40:45 +0200 |
commit | b494dfc0933c28729eaf8bc2105bbeb28d24ceae (patch) | |
tree | cedbd44afcbe0db0b0392617b42565004fed9f76 /apps/it/templates/list_issues.html | |
download | pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.tar.gz pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.tar.bz2 pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.zip |
Initial commit
Diffstat (limited to 'apps/it/templates/list_issues.html')
-rw-r--r-- | apps/it/templates/list_issues.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/apps/it/templates/list_issues.html b/apps/it/templates/list_issues.html new file mode 100644 index 0000000..c52058d --- /dev/null +++ b/apps/it/templates/list_issues.html @@ -0,0 +1,12 @@ +{% extends "default.html" %} + +{% block main %} + <table class="table"> + {% for i in issues %} + <tr> + <td><a href="{% url 'view_issue' i.pk %}">{{ i.description }}</a></td> + <td><a class="btn btn-default btn-sm metoo" href="{% url 'metoo' i.pk 1 %}">Me too!</a></td> + </tr> + {% endfor %} + </table> +{% endblock main %} |