platform_list.html 578 B

123456789101112131415161718192021
  1. {% extends '_base.html' %}
  2. {% load helpers %}
  3. {% block title %}Platforms{% endblock %}
  4. {% block content %}
  5. <div class="pull-right">
  6. {% if perms.dcim.add_platform %}
  7. <a href="{% url 'dcim:platform_add' %}" class="btn btn-primary">
  8. <span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
  9. Add a platform
  10. </a>
  11. {% endif %}
  12. </div>
  13. <h1>Platforms</h1>
  14. <div class="row">
  15. <div class="col-md-12">
  16. {% include 'utilities/obj_table.html' with bulk_delete_url='dcim:platform_bulk_delete' %}
  17. </div>
  18. </div>
  19. {% endblock %}