diff options
author | Christian Pointner <equinox@helsinki.at> | 2021-03-01 10:44:28 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2021-03-01 10:44:28 (GMT) |
commit | b23c473e3af9e7c4e5c7aee6bfc93cde40737d94 (patch) | |
tree | 74092e34afd69a6d2f0afbb83bbb1e0951b8f49a /program/templates/v2/host_list.html | |
parent | 850f92794a2571f44fd95f53a3f96f5ea659b3a4 (diff) |
fix vew names and url tag parameters for v2 templates
Diffstat (limited to 'program/templates/v2/host_list.html')
-rw-r--r-- | program/templates/v2/host_list.html | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/program/templates/v2/host_list.html b/program/templates/v2/host_list.html index ada9bf1..8353b71 100644 --- a/program/templates/v2/host_list.html +++ b/program/templates/v2/host_list.html @@ -9,7 +9,7 @@ <div class="host-list"> {% for host in host_list %} <div class="host"> - <a href="{% url "host-detail" host.id %}">{{ host.name }}</a> + <a href="{% url "host-detail-v2" host.id %}">{{ host.name }}</a> </div> {% endfor %} </div> |