mirror of
https://github.com/netbox-community/netbox.git
synced 2024-05-10 07:54:54 +00:00
29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
{% extends '_base.html' %}
|
|
{% load buttons %}
|
|
{% load helpers %}
|
|
|
|
{% block content %}
|
|
<div class="pull-right noprint">
|
|
{% if permissions.add %}
|
|
{% add_button content_type.model_class|url_name:"add" %}
|
|
{% import_button content_type.model_class|url_name:"import" %}
|
|
{% endif %}
|
|
{% export_button content_type %}
|
|
</div>
|
|
<h1>{% block title %}{{ content_type.model_class|model_name_plural|bettertitle }}{% endblock %}</h1>
|
|
<div class="row">
|
|
{% if filter_form %}
|
|
<div class="col-md-9">
|
|
{% include 'utilities/obj_table.html' with bulk_edit_url=content_type.model_class|url_name:"bulk_edit" bulk_delete_url=content_type.model_class|url_name:"bulk_delete" %}
|
|
</div>
|
|
<div class="col-md-3 noprint">
|
|
{% include 'inc/search_panel.html' %}
|
|
</div>
|
|
{% else %}
|
|
<div class="col-md-12">
|
|
{% include 'utilities/obj_table.html' with bulk_edit_url=content_type.model_class|url_name:"bulk_edit" bulk_delete_url=content_type.model_class|url_name:"bulk_delete" %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|