1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

Bulk edit list cleanup

This commit is contained in:
Jeremy Stretch
2016-06-01 13:37:03 -04:00
parent b4619fad7a
commit 3cedfc3c6a
3 changed files with 3 additions and 5 deletions

View File

@ -11,7 +11,6 @@
<td>{{ circuit.provider }}</td>
<td>{{ circuit.port_speed }}</td>
<td>{{ circuit.commit_rate }}</td>
<td>{{ circuit.comments }}</td>
</tr>
{% endfor %}
{% endblock %}

View File

@ -7,9 +7,8 @@
{% for provider in selected_objects %}
<tr>
<td><a href="{% url 'circuits:provider' slug=provider.slug %}">{{ provider }}</a></td>
<td>{{ aggregate.asn }}</td>
<td>{{ aggregate.account }}</td>
<td>{{ aggregate.comments }}</td>
<td>{{ provider.account }}</td>
<td>{{ provider.asn }}</td>
</tr>
{% endfor %}
{% endblock %}