2018-01-30 17:46:00 -05:00
|
|
|
{% extends '_base.html' %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% load buttons %}
|
2018-01-30 17:46:00 -05:00
|
|
|
{% load helpers %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="pull-right">
|
|
|
|
{% if perms.dcim.add_devicetype %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% import_button 'dcim:inventoryitem_import' %}
|
2018-01-30 17:46:00 -05:00
|
|
|
{% endif %}
|
2018-02-02 16:12:57 -05:00
|
|
|
{% export_button content_type %}
|
2018-01-30 17:46:00 -05:00
|
|
|
</div>
|
|
|
|
<h1>{% block title %}Inventory Items{% endblock %}</h1>
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-9">
|
|
|
|
{% include 'utilities/obj_table.html' with bulk_edit_url='dcim:inventoryitem_bulk_edit' bulk_delete_url='dcim:inventoryitem_bulk_delete' %}
|
|
|
|
</div>
|
|
|
|
<div class="col-md-3">
|
|
|
|
{% include 'inc/search_panel.html' %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|