rackreservation_list.html 432 B

1234567891011121314
  1. {% extends '_base.html' %}
  2. {% load helpers %}
  3. {% block content %}
  4. <h1>{% block title %}Rack Reservations{% endblock %}</h1>
  5. <div class="row">
  6. <div class="col-md-9">
  7. {% include 'utilities/obj_table.html' with bulk_edit_url='dcim:rackreservation_bulk_edit' bulk_delete_url='dcim:rackreservation_bulk_delete' %}
  8. </div>
  9. <div class="col-md-3 noprint">
  10. {% include 'inc/search_panel.html' %}
  11. </div>
  12. </div>
  13. {% endblock %}