diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-20 15:01:20 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-20 15:01:20 +0100 |
commit | e4c95417112ffe8ba684b4f1d7bd957f87b2f2ed (patch) | |
tree | 9b61947660b28196dc7f33df42c82dc1c7ffd979 /ctrack/templates/pages/home.html | |
parent | 4ea13b2ed79e95d2cf710c8d2d6e95fb454e054a (diff) |
func to group lead inspectors by submode
Diffstat (limited to '')
-rw-r--r-- | ctrack/templates/pages/home.html | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ctrack/templates/pages/home.html b/ctrack/templates/pages/home.html index 9ef16ac..1a3348f 100644 --- a/ctrack/templates/pages/home.html +++ b/ctrack/templates/pages/home.html @@ -91,9 +91,10 @@ Inspectors </h3> <ul class="list-group"> - {% for user in caf_users %} - <li class="list-group-item list-group-item-dark">{{ user.name }}</li> - {% endfor %} + {% for submode in submodes %} + {{ submode }} + {% endfor %} + </ul> </div> </div> |