aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/templates/snippets/event_form_base.html
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-10-14 17:01:22 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-10-14 17:01:22 +0100
commit14fa59eee9ba35ad462b5b17229a09164f5d716d (patch)
tree1223522b7cc30cf57ad8ec66e50c5081727fe3d4 /ctrack/templates/snippets/event_form_base.html
parentbc4edc69407f20da32a48d534b3d725cc3818c1a (diff)
about to nuke migrations
Diffstat (limited to '')
-rw-r--r--ctrack/templates/snippets/event_form_base.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/ctrack/templates/snippets/event_form_base.html b/ctrack/templates/snippets/event_form_base.html
new file mode 100644
index 0000000..aeedb16
--- /dev/null
+++ b/ctrack/templates/snippets/event_form_base.html
@@ -0,0 +1,16 @@
+{% extends "base.html" %}
+
+{% block title %}
+ Create a new event (Meeting, Phone call, Email)
+{% endblock %}
+
+
+{% block content %}
+ <div class="container">
+ <div class="row justify-content-center">
+ <div class="col-8">
+ {% block form %}{% endblock form %}
+ </div>
+ </div>
+ </div>
+{% endblock content %}