aboutsummaryrefslogtreecommitdiffstats
path: root/ctrack/organisations/templates
diff options
context:
space:
mode:
authorMR Lemon <matt@matthewlemon>2020-04-24 17:46:33 +0100
committerMR Lemon <matt@matthewlemon>2020-04-24 17:46:33 +0100
commit301154e0a48ea2e2966afa92912317367dfcbe1b (patch)
tree5dc8bb07a2ab7e3685b6f5b1ea3903fe13ddc9c7 /ctrack/organisations/templates
parenta03fdb0731a6cd5d41a05ce7d3e3b79e280248de (diff)
much nicer create organisation form
Diffstat (limited to '')
-rw-r--r--ctrack/organisations/templates/organisations/organisation_create.html21
1 files changed, 18 insertions, 3 deletions
diff --git a/ctrack/organisations/templates/organisations/organisation_create.html b/ctrack/organisations/templates/organisations/organisation_create.html
index 27e2cf4..4ee2801 100644
--- a/ctrack/organisations/templates/organisations/organisation_create.html
+++ b/ctrack/organisations/templates/organisations/organisation_create.html
@@ -7,10 +7,25 @@
{% load crispy_forms_tags %}
{% block content %}
- <div class="container">
+ <div class="container mt-3">
<div class="row">
- <div class="col-sm-12">
- {% crispy form %}
+ <div class="col-md-12 pl-0 my-2">
+ <h4>Create a new Organisation</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 on Organisations</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>