mirror of
https://github.com/netbox-community/netbox.git
synced 2025-07-27 02:48:38 -06:00
Cleanup improper spaces with variable tags
This commit is contained in:
parent
91fe80f73c
commit
15505b5f41
@ -18,7 +18,7 @@
|
||||
{% include 'dcim/trace/termination.html' with termination=near_end %}
|
||||
{% elif near_end.power_panel %}
|
||||
{% include 'dcim/trace/powerpanel.html' with powerpanel=near_end.power_panel %}
|
||||
{% include 'dcim/trace/termination.html' with termination=far_end%}
|
||||
{% include 'dcim/trace/termination.html' with termination=far_end %}
|
||||
{% elif near_end.circuit %}
|
||||
{% include 'dcim/trace/circuit.html' with circuit=near_end.circuit %}
|
||||
{% include 'dcim/trace/termination.html' with termination=near_end %}
|
||||
|
@ -42,7 +42,7 @@
|
||||
<tr>
|
||||
<td>LAG</td>
|
||||
<td>
|
||||
{% if object.lag%}
|
||||
{% if object.lag %}
|
||||
<a href="{{ object.lag.get_absolute_url }}">{{ object.lag }}</a>
|
||||
{% else %}
|
||||
<span class="text-muted">None</span>
|
||||
@ -118,7 +118,7 @@
|
||||
<tr>
|
||||
<td>LAG</td>
|
||||
<td>
|
||||
{% if iface.lag%}
|
||||
{% if iface.lag %}
|
||||
<a href="{{ iface.lag.get_absolute_url }}">{{ iface.lag }}</a>
|
||||
{% else %}
|
||||
<span class="text-muted">None</span>
|
||||
|
@ -385,7 +385,7 @@
|
||||
{% endif %}
|
||||
<a href="{% url 'virtualization:virtualmachine_list' %}">Virtual Machines</a>
|
||||
</li>
|
||||
<li{% if not perms.virtualization.view_vminterface%} class="disabled"{% endif %}>
|
||||
<li{% if not perms.virtualization.view_vminterface %} class="disabled"{% endif %}>
|
||||
{% if perms.virtualization.add_vminterface %}
|
||||
<div class="buttons pull-right">
|
||||
<a href="{% url 'virtualization:vminterface_import' %}" class="btn btn-xs btn-info" title="Import"><i class="mdi mdi-database-import-outline"></i></a>
|
||||
|
@ -35,7 +35,7 @@
|
||||
{% clone_button object %}
|
||||
{% endif %}
|
||||
{% if perms.ipam.change_ipaddress %}
|
||||
{%edit_button object %}
|
||||
{% edit_button object %}
|
||||
{% endif %}
|
||||
{% if perms.ipam.delete_ipaddress %}
|
||||
{% delete_button object %}
|
||||
|
Loading…
Reference in New Issue
Block a user