network_inventory/network_inventory/inventory/templates/inventory/base.html

20 lines
570 B
HTML
Raw Normal View History

2017-12-25 23:54:37 +01:00
{% load staticfiles %}
2017-12-25 00:37:31 +01:00
<!DOCTYPE html>
<head>
2017-12-27 23:56:55 +01:00
<link rel="stylesheet" href="{% static 'inventory/css/inventory.css' %}">
<title>Network Inventory</title>
<meta charset="utf-8">
2017-12-25 00:37:31 +01:00
</head>
<body>
2019-06-10 21:56:21 +02:00
<a href="{% url 'customers' %}">Home</a> |
2017-12-27 17:50:25 +01:00
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}
<footer>
2017-12-25 00:37:31 +01:00
{% block footer %}
2017-12-27 18:22:06 +01:00
<p class="copyright">Created by Andreas Zweili licensed under GPL v3.0</p>
2017-12-25 00:37:31 +01:00
{% endblock %}
2017-12-27 17:50:25 +01:00
</footer>
<script src={% static 'inventory/js/sorttable.js' %}></script>
2017-12-27 17:50:25 +01:00
</body>
2017-12-25 00:37:31 +01:00
</html>