diff options
Diffstat (limited to 'ctrack/templates/pages/home.html')
-rw-r--r-- | ctrack/templates/pages/home.html | 40 |
1 files changed, 28 insertions, 12 deletions
diff --git a/ctrack/templates/pages/home.html b/ctrack/templates/pages/home.html index 3c563db..a8fa58e 100644 --- a/ctrack/templates/pages/home.html +++ b/ctrack/templates/pages/home.html @@ -6,20 +6,20 @@ <div class="jumbotron"> <div class="container"> <h1 class="display-3">ctrack</h1> - <p><strong>DfT's Cyber Compliance Team's information management system</strong>, used to track all core + <p><strong>DfT's Cyber Compliance Team's proof of concept information management system</strong>, used to track + all core components of the NIS regime.</p> - <p>ctrack is a proof-of-concept web application developed in-house by the Cyber Compliance + <p>ctrack is developed in-house by the Cyber Compliance Team at the UK Department for Transport that aims to demonstrate the improvements in workflow possible by storing data associated with OES and its associated CAF data in a relational database. It focuses on the absolute basics of managing any business data: Create, Read, Update, Delete (CRUD) functionality and demonstrates how collection and analysis of ongoing assessment data - using the CAF as the foundation (the framework, not the spreadsheet) - can be exponentially improved using the simplest of form-based web application.</p> - <hr> <div class="col-12 p-2"> <div class="row row-cols-2"> <div class="col-md-6 m-1 border rounded p-2"> - <h3> + <h3 class="mb-3"> <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-people-fill" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" @@ -27,21 +27,31 @@ </svg> OES/Organisations </h3> - <p>There are currently <span class="lead font-weight-bold">53</span> <a + <p>There are currently <span class="lead font-weight-bold">{{ no_orgs }}</span> <a href="{% url "organisations:list" %}">organisations</a> on ctrack, comprising <span - class="lead font-weight-bold">124</span> <a href="{% url "organisations:people" %}">people</a>.</p> + class="lead font-weight-bold">{{ no_people }}</span> <a href="{% url "organisations:people" %}">people</a>. + OES are responsible for <span class="lead font-weight-bold">{{ no_essential_services }}</span> NIS <a + href="#">essential services</a>. There have been a total of <span + class="lead font-weight-bold">X</span> <a href="#">interactions</a> with OES by inspectors, + including <span class="lead font-weight-bold">X</span> emails, <span + class="lead font-weight-bold">X</span> + phone calls, <span class="lead font-weight-bold">X</span> video conferences, and <span + class="lead font-weight-bold">X</span> + meetings.</p> <ul class="list-group"> - <li class="list-group-item list-group-item-warning"><a href="{% url "organisations:list" %}">List of all + <li class="list-group-item list-group-item-dark"><a href="{% url "organisations:list" %}">All organisations</a></li> - <li class="list-group-item list-group-item-warning"><a href="{% url "organisations:people" %}">List of all + <li class="list-group-item list-group-item-dark"><a href="{% url "organisations:people" %}">All people</a></li> + <li class="list-group-item list-group-item-dark"><a href="#">All + essential services</a></li> </ul> <p>You can filter these lists to view things by <strong>lead inspector</strong>, <strong>sub-mode</strong> and other things.</p> </div> <div class="col-md-5 m-1 border rounded p-2"> - <h3> + <h3 class="mb-3"> <svg width="1em" height="1em" viewBox="0 0 16 16" class="bi bi-card-checklist" fill="currentColor" xmlns="http://www.w3.org/2000/svg"> <path fill-rule="evenodd" @@ -52,12 +62,18 @@ CAFs </h3> <p>There are <span class="lead font-weight-bold">93</span> <a href="{% url "caf:caf_list" %}">CAFs</a> on - ctrack.</p> + ctrack, providing data on <span class="lead font-weight-bold">{{ no_systems }}</span> <a + href="{% url "caf:es_list" %}">critical systems</a>. Of these, <span + class="lead font-weight-bold">12</span> have been validated. <span + class="lead font-weight-bold">X</span> + are currently undergoing validation and <span + class="lead font-weight-bold">X</span> are currently being updated by OES.</p> <ul class="list-group"> - <li class="list-group-item list-group-item-warning"><a href="{% url "caf:caf_list" %}">List of all + <li class="list-group-item list-group-item-dark"><a href="{% url "caf:caf_list" %}">All CAFs</a></li> + <li class="list-group-item list-group-item-dark"><a href="{% url "caf:es_list" %}">All + critical systems</a></li> </ul> - <p>Of these - <span class="lead font-weight-bold">12</span> have been validated.</p> </div> </div> <div class="row mt-2"> |