virtual_machines.html 560 B

1234567891011121314151617181920
  1. {% extends 'dcim/devicerole.html' %}
  2. {% load helpers %}
  3. {% load render_table from django_tables2 %}
  4. {% block content %}
  5. {% include 'inc/table_controls_htmx.html' with table_modal='VirtualMachineTable_config' %}
  6. <form method="post">
  7. {% csrf_token %}
  8. <div class="card">
  9. <div class="card-body" id="object_list">
  10. {% include 'htmx/table.html' %}
  11. </div>
  12. </div>
  13. </form>
  14. {% endblock content %}
  15. {% block modals %}
  16. {{ block.super }}
  17. {% table_config_form table %}
  18. {% endblock modals %}