diff --git a/conntrackt/templates/conntrackt/create_form.html b/conntrackt/templates/conntrackt/create_form.html new file mode 100644 --- /dev/null +++ b/conntrackt/templates/conntrackt/create_form.html @@ -0,0 +1,25 @@ +{% extends "conntrackt/base.html" %} + +{# For html_link #} +{% load conntrackt_tags %} +{# For Bootstrapped forms #} +{% load crispy_forms_tags %} + +{% block content %} +
+

{{headline}}

+
+
+
+
+
+ {% csrf_token %} + {{ form | crispy }} +
+
+ +
+
+
+
+{% endblock content %}