1
0
mirror of https://github.com/netbox-community/netbox.git synced 2024-05-10 07:54:54 +00:00

30 lines
858 B
HTML
Raw Normal View History

2016-03-01 11:23:03 -05:00
{% extends '_base.html' %}
{% block title %}Sites{% endblock %}
{% block content %}
<div class="pull-right">
{% if perms.dcim.add_site %}
<a href="{% url 'dcim:site_add' %}" class="btn btn-primary">
<span class="glyphicon glyphicon-plus" aria-hidden="true"></span>
Add a site
</a>
2016-07-28 15:30:29 -04:00
<a href="{% url 'dcim:site_import' %}" class="btn btn-info">
<span class="fa fa-download" aria-hidden="true"></span>
2016-07-28 15:30:29 -04:00
Import sites
</a>
2016-03-01 11:23:03 -05:00
{% endif %}
{% include 'inc/export_button.html' with obj_type='sites' %}
2016-03-01 11:23:03 -05:00
</div>
<h1>Sites</h1>
2016-06-29 12:06:37 -04:00
<div class="row">
<div class="col-md-9">
2016-07-28 15:30:29 -04:00
{% include 'utilities/obj_table.html' with bulk_edit_url='dcim:site_bulk_edit' %}
2016-06-29 12:06:37 -04:00
</div>
<div class="col-md-3">
{% include 'inc/search_panel.html' %}
{% include 'inc/filter_panel.html' %}
2016-06-29 12:06:37 -04:00
</div>
</div>
2016-03-01 11:23:03 -05:00
{% endblock %}