diff options
author | MR Lemon <matt@matthewlemon> | 2020-04-17 14:44:42 +0100 |
---|---|---|
committer | MR Lemon <matt@matthewlemon> | 2020-04-17 14:44:42 +0100 |
commit | 0f7522d3c36391ea6750f52861c3b67ef0fcf4e2 (patch) | |
tree | a02bcdd1c9f33be3d639f8edfc3d318bdf618fc7 /ctrack/caf | |
parent | 06db3f1c10210ad1a9c1ae67f440a7211166a5ec (diff) |
Tweaked the CAF list page
Diffstat (limited to 'ctrack/caf')
-rw-r--r-- | ctrack/caf/templates/caf/caf_detail.html | 4 | ||||
-rw-r--r-- | ctrack/caf/templates/caf/caf_list.html | 6 |
2 files changed, 5 insertions, 5 deletions
diff --git a/ctrack/caf/templates/caf/caf_detail.html b/ctrack/caf/templates/caf/caf_detail.html index 730a5ab..eea5c3a 100644 --- a/ctrack/caf/templates/caf/caf_detail.html +++ b/ctrack/caf/templates/caf/caf_detail.html @@ -7,7 +7,7 @@ <div class="container"> <div class="row"> - <h2>{{ object }}</h2> + <h3>{{ object }}</h3> </div> @@ -160,4 +160,4 @@ {% endblock %} -{% comment %} <link rel="stylesheet" type="text/css" href="{% static 'css/project.css' %}"> {% endcomment %}
\ No newline at end of file +{% comment %} <link rel="stylesheet" type="text/css" href="{% static 'css/project.css' %}"> {% endcomment %} diff --git a/ctrack/caf/templates/caf/caf_list.html b/ctrack/caf/templates/caf/caf_list.html index 1deafae..ce2940e 100644 --- a/ctrack/caf/templates/caf/caf_list.html +++ b/ctrack/caf/templates/caf/caf_list.html @@ -7,7 +7,7 @@ <div class="container"> <div class="row"> - <h2>CAF Summary</h2> + <h2>CAF List</h2> </div> <div class="row"> <div class="col-sm-12"> @@ -15,7 +15,7 @@ <thead> <tr> <th>Organisation</th> - <th>Version</th> + <th>Link</th> <th>Sub Mode</th> <th>Applicable Systems</th> </tr> @@ -23,7 +23,7 @@ {% for caf in object_list %} <tr> <td><a href="{% url "organisations:detail" slug=caf.organisation.slug %}">{{ caf.organisation }}</a></td> - <td>{{ caf.version }}</td> + <td><a href="{% url 'caf:detail' pk=caf.pk %}">{{ caf.version }}</a></td> <td>{{ caf.sub_mode }}</td> <td> <ul> |