aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/templates
diff options
context:
space:
mode:
authorMatthew Lemon <lemon@matthewlemon.com>2020-05-29 14:23:07 +0100
committerMatthew Lemon <lemon@matthewlemon.com>2020-05-29 14:23:07 +0100
commit739b3dd6aa383f70e5442e74fb4d217d5619d110 (patch)
tree54d9ef6fad57c7dbc6283b0a2cc2cd73955dc80c /ctrack/organisations/templates
parent8edc6a41c160ff75e964db45371e4ae63fb68c17 (diff)
IncidentReport model in place and func test passing so far
Diffstat (limited to 'ctrack/organisations/templates')
-rw-r--r--ctrack/organisations/templates/organisations/incidentreport_form.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/ctrack/organisations/templates/organisations/incidentreport_form.html b/ctrack/organisations/templates/organisations/incidentreport_form.html
new file mode 100644
index 0000000..5387f56
--- /dev/null
+++ b/ctrack/organisations/templates/organisations/incidentreport_form.html
@@ -0,0 +1,32 @@
+{% extends "base.html" %}
+
+{% block title %}
+ Submit a new NIS Incident Report to DfT
+{% endblock title %}
+
+{% load crispy_forms_tags %}
+
+{% block content %}
+ <div class="container mt-3">
+ <div class="row">
+ <div class="col-md-12 pl-0 my-2">
+ <h4>Submit an Incident Report</h4>
+ </div>
+ </div>
+ <div class="row">
+ <div class="col-md-7 pt-2 border bg-light">
+ {% crispy form %}
+ </div>
+ <div class="col-sm-5">
+ <div class="card" style="width: 18rem;">
+ <div class="card-body">
+ <h5 class="card-title">Help submitting a form</h5>
+ <p class="card-text">An organisation is the parent/operating company. There is probably advice and
+ proper definitions for this somewhere. Maybe if you click the link below, it will take you there?</p>
+ <a href="#" class="btn btn-primary">Go somewhere</a>
+ </div>
+ </div>
+ </div>
+ </div>
+ </div>
+{% endblock content %}