network_inventory/devices/templates/devices/device_details.html

24 lines
561 B
HTML
Raw Normal View History

2020-01-11 17:41:03 +01:00
{% extends "core/base.html" %}
2017-12-25 13:50:32 +01:00
{% block section_title %}{{ device.name }}{% endblock %}
{% block content %}
2020-02-25 20:25:20 +01:00
<div class="row">
2020-02-25 21:53:57 +01:00
<div class="col mt-3">
{% block device_details %}
2020-02-16 14:47:29 +01:00
{% include "devices/device_details_block.html" %}
{% endblock %}
2020-02-25 20:25:20 +01:00
</div>
2020-02-25 21:53:57 +01:00
<div class="col mt-3">
{% block warranty_details %}
{% include "devices/warranty_block.html" %}
{% endblock %}
2020-02-25 20:25:20 +01:00
</div>
2020-02-16 14:47:29 +01:00
2020-02-25 21:53:57 +01:00
<div class="col mt-3">
2020-02-16 14:47:29 +01:00
{% block ips %}
{% include "devices/ip_block.html" %}
{% endblock %}
2020-02-25 20:25:20 +01:00
</div>
</div>
2017-12-25 13:50:32 +01:00
{% endblock %}