Fixes #8922 - Add service list to IP address view

This commit is contained in:
Daniel Sheppard
2022-05-13 09:40:24 -05:00
parent 49862c55de
commit 9410af47c9
3 changed files with 25 additions and 0 deletions

View File

@@ -128,6 +128,24 @@
<div class="my-3">
{% include 'inc/panel_table.html' with table=related_ips_table heading='Related IP Addresses' %}
</div>
<div class="card">
<h5 class="card-header">
Services
</h5>
<div class="card-body">
{% if services %}
<table class="table table-hover">
{% for service in services %}
{% include 'ipam/inc/service.html' %}
{% endfor %}
</table>
{% else %}
<div class="text-muted">
None
</div>
{% endif %}
</div>
</div>
{% plugin_right_page object %}
</div>
</div>