summaryrefslogtreecommitdiffstats
path: root/apps/it/templates/edit_task.html
diff options
context:
space:
mode:
Diffstat (limited to 'apps/it/templates/edit_task.html')
-rw-r--r--apps/it/templates/edit_task.html11
1 files changed, 11 insertions, 0 deletions
diff --git a/apps/it/templates/edit_task.html b/apps/it/templates/edit_task.html
new file mode 100644
index 0000000..e1be666
--- /dev/null
+++ b/apps/it/templates/edit_task.html
@@ -0,0 +1,11 @@
+{% extends "default.html" %}
+{% load bootstrap3 %}
+{% load i18n %}
+
+{% block main %}
+ <form action="" method="post" class="form">
+ {% csrf_token %}
+ {% bootstrap_form form %}
+ <button type="submit" class="btn btn-primary">{% trans "Submit" %}</button>
+ </form>
+{% endblock main %}