diff options
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 %} + + + |