aboutsummaryrefslogtreecommitdiff
path: root/pyenc/templates/class.html
diff options
context:
space:
mode:
Diffstat (limited to 'pyenc/templates/class.html')
-rw-r--r--pyenc/templates/class.html9
1 files changed, 8 insertions, 1 deletions
diff --git a/pyenc/templates/class.html b/pyenc/templates/class.html
index bfae1b2..3c8b809 100644
--- a/pyenc/templates/class.html
+++ b/pyenc/templates/class.html
@@ -29,7 +29,7 @@
{% endfor %}
</tbody>
</table>
- <dt>Hosts</dt>
+ <dt>Direct Hosts</dt>
<dd>
<ul>
{% for host in cls.hosts %}
@@ -37,6 +37,13 @@
{% endfor %}
</ul>
</dd>
+ <dt>All Hosts</dt>
+ <dd id="class-hosts">
+ </dd>
</dl>
+<script>
+ let node = document.getElementById('class-hosts')
+ populate_class_hosts(node, "{{ title }}")
+</script>
{% endblock %}
{# ft:jinja #}