From 86379d27a353baa4bd175612b80bc7b7e389aa83 Mon Sep 17 00:00:00 2001 From: Ross Date: Sun, 5 Dec 2021 19:10:12 +0000 Subject: [PATCH] . --- atlas/templates/atlas/finding_form.html | 26 +++++++++++++++++++++++ atlas/templates/atlas/structure_form.html | 26 +++++++++++++++++++++++ 2 files changed, 52 insertions(+) create mode 100755 atlas/templates/atlas/finding_form.html create mode 100755 atlas/templates/atlas/structure_form.html diff --git a/atlas/templates/atlas/finding_form.html b/atlas/templates/atlas/finding_form.html new file mode 100755 index 00000000..843f202f --- /dev/null +++ b/atlas/templates/atlas/finding_form.html @@ -0,0 +1,26 @@ +{% extends "atlas/base.html" %} + + +{% block css %} +{% endblock %} +{% block js %} + +{{form.media}} + + + + +{% endblock %} +{% block content %} +

Add/Edit Finding

+Use this form to create or edit a finding. +
+ {% csrf_token %} + + + {{ form.as_table }} +
+ +
+{% endblock %} \ No newline at end of file diff --git a/atlas/templates/atlas/structure_form.html b/atlas/templates/atlas/structure_form.html new file mode 100755 index 00000000..4b63c509 --- /dev/null +++ b/atlas/templates/atlas/structure_form.html @@ -0,0 +1,26 @@ +{% extends "atlas/base.html" %} + + +{% block css %} +{% endblock %} +{% block js %} + +{{form.media}} + + + + +{% endblock %} +{% block content %} +

Add/Edit Structure

+Use this form to create or edit a structure. +
+ {% csrf_token %} + + + {{ form.as_table }} +
+ +
+{% endblock %} \ No newline at end of file