2016-03-01 11:23:03 -05:00
|
|
|
{% extends 'utilities/bulk_edit_form.html' %}
|
|
|
|
{% load form_helpers %}
|
|
|
|
|
|
|
|
{% block title %}Aggregate Bulk Edit{% endblock %}
|
|
|
|
|
2016-09-28 17:20:16 -04:00
|
|
|
{% block selected_objects_table %}
|
|
|
|
<tr>
|
|
|
|
<th>Aggregate</th>
|
|
|
|
<th>RIR</th>
|
|
|
|
<th>Date Added</th>
|
|
|
|
<th>Description</th>
|
|
|
|
</tr>
|
2016-03-01 11:23:03 -05:00
|
|
|
{% for aggregate in selected_objects %}
|
|
|
|
<tr>
|
|
|
|
<td><a href="{% url 'ipam:aggregate' pk=aggregate.pk %}">{{ aggregate }}</a></td>
|
|
|
|
<td>{{ aggregate.rir }}</td>
|
|
|
|
<td>{{ aggregate.date_added }}</td>
|
|
|
|
<td>{{ aggregate.description }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|