diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-09-04 16:14:59 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-09-04 16:14:59 +0100 |
commit | 8e843075adc31359703838e23e53b17ffa8e9f9c (patch) | |
tree | b5504c70f0076d3bf53dc47991c0a690e4942ed3 /ctrack/caf/templates | |
parent | 959c001905fffc4840e8f795170d724474bc1997 (diff) |
linking up essential service, ass and org detail html
Diffstat (limited to 'ctrack/caf/templates')
-rw-r--r-- | ctrack/caf/templates/caf/applicablesystem_detail.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/caf/templates/caf/applicablesystem_detail.html b/ctrack/caf/templates/caf/applicablesystem_detail.html index b8467b0..fa1d414 100644 --- a/ctrack/caf/templates/caf/applicablesystem_detail.html +++ b/ctrack/caf/templates/caf/applicablesystem_detail.html @@ -24,7 +24,7 @@ <div class="row"> <ul> {% for s in object.essentialservice_set.all %} - <li>{{ s.name }}</li> + <li><a href="{% url "organisations:essential_service_detail" s.pk %}">{{ s.name }}</a></li> {% endfor %} </ul> </div> |