mirror of
https://github.com/netbox-community/netbox.git
synced 2026-04-26 02:38:48 +02:00
Initial push to public repo
This commit is contained in:
15
netbox/templates/circuits/provider_bulk_edit.html
Normal file
15
netbox/templates/circuits/provider_bulk_edit.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends 'utilities/bulk_edit_form.html' %}
|
||||
{% load form_helpers %}
|
||||
|
||||
{% block title %}Provider Bulk Edit{% endblock %}
|
||||
|
||||
{% block select_objects_table %}
|
||||
{% 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>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user