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

23 lines
716 B
HTML
Raw Normal View History

2019-06-16 22:11:53 +02:00
{% load static %}
2017-12-25 00:37:31 +01:00
<!DOCTYPE html>
<head>
2019-08-02 16:54:02 +02:00
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.css">
<title>Network Inventory</title>
<meta charset="utf-8">
2017-12-25 00:37:31 +01:00
</head>
<body>
2019-08-02 12:21:05 +02:00
<div class="ui container">
2019-06-10 21:56:21 +02:00
<a href="{% url 'customers' %}">Home</a> |
2019-08-02 16:54:32 +02:00
<a href="{% url 'all_computers' %}">All Computers</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>
2019-08-02 12:21:05 +02:00
</div>
2019-08-02 16:54:02 +02:00
<script src="https://cdn.jsdelivr.net/npm/semantic-ui@2.4.2/dist/semantic.min.js"></script>
2017-12-27 17:50:25 +01:00
</body>
2017-12-25 00:37:31 +01:00
</html>