aggregate_bulk_edit.html 617 B

123456789101112131415161718192021
  1. {% extends 'utilities/bulk_edit_form.html' %}
  2. {% load form_helpers %}
  3. {% block title %}Aggregate Bulk Edit{% endblock %}
  4. {% block selected_objects_table %}
  5. <tr>
  6. <th>Aggregate</th>
  7. <th>RIR</th>
  8. <th>Date Added</th>
  9. <th>Description</th>
  10. </tr>
  11. {% for aggregate in selected_objects %}
  12. <tr>
  13. <td><a href="{% url 'ipam:aggregate' pk=aggregate.pk %}">{{ aggregate }}</a></td>
  14. <td>{{ aggregate.rir }}</td>
  15. <td>{{ aggregate.date_added }}</td>
  16. <td>{{ aggregate.description }}</td>
  17. </tr>
  18. {% endfor %}
  19. {% endblock %}