diff options
author | MR Lemon <matt@matthewlemon> | 2020-05-01 17:30:48 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-05-01 17:31:03 +0100 |
commit | 989b3bf9259b06ed3542d16a81712635ef492c33 (patch) | |
tree | f3f53e9000712568942e658dfbd889068bed2fd4 /ctrack/organisations/templates | |
parent | dbe4555b17e2dd0d49b8c4879252692f75f8fe42 (diff) |
started to put in an inlineformset!
Diffstat (limited to 'ctrack/organisations/templates')
-rw-r--r-- | ctrack/organisations/templates/organisations/org_create_formset.html | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/ctrack/organisations/templates/organisations/org_create_formset.html b/ctrack/organisations/templates/organisations/org_create_formset.html new file mode 100644 index 0000000..4b5c3c2 --- /dev/null +++ b/ctrack/organisations/templates/organisations/org_create_formset.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} + +{% block title %} + Create a new Organisation +{% endblock title %} + +{% load crispy_forms_tags %} + +{% block content %} + + <div class="container"> + <div class="row"> + <div class="col-md-12"> + <form method="post"> + {{ formset.management_form }} + {% for form in formset %} + {% crispy form %} + {% endfor %} + </form> + </div> + </div> + </div> + +{% endblock %} + + + |