diff options
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/pages/home.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ctrack/templates/pages/home.html b/ctrack/templates/pages/home.html index 6436bed..7c414b8 100644 --- a/ctrack/templates/pages/home.html +++ b/ctrack/templates/pages/home.html @@ -105,7 +105,7 @@ <h5>Lead Inspectors</h5> <ul class="list-unstyled"> {% for k, v in submode_inspector_dict.items %} - <li><strong>{{ k }}</strong> {% for x in v %} <a href="#">{{ x.name }}</a> -{% endfor %}</li> + <li><strong>{{ k }}</strong> {% for x in v %} <a href="{% url "organisations:list_by_inspector" x.id %}">{{ x.name }}</a> -{% endfor %}</li> {% endfor %} </ul> </div> |