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/view_issue.html | |
download | pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.tar.gz pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.tar.bz2 pudding-b494dfc0933c28729eaf8bc2105bbeb28d24ceae.zip |
Initial commit
Diffstat (limited to 'apps/it/templates/view_issue.html')
-rw-r--r-- | apps/it/templates/view_issue.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/apps/it/templates/view_issue.html b/apps/it/templates/view_issue.html new file mode 100644 index 0000000..c4ee3ce --- /dev/null +++ b/apps/it/templates/view_issue.html @@ -0,0 +1,14 @@ +{% extends "default.html" %} +{% load bootstrap3 %} +{% load i18n %} + +{% block main %} + <p>{{ issue.description }}</p> + {% for i in issue.task_set.all %} + <p>{{ i.description }}</p> + {% endfor %} + <form action="{% url 'add_files' issue.pk %}" class="dropzone" id="my-awesome-dropzone"></form> + <a class="btn btn-default" href="{% url 'edit_issue' issue.pk %}">Edit</a> + <a class="btn btn-default" href="{% url 'add_task' issue.pk %}">Add Task</a> + <a class="btn btn-default metoo" href="{% url 'metoo' issue.pk 1 %}">Me too!</a> +{% endblock main %} |