network_inventory/inventory/templates/inventory/base.html

17 lines
423 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-25 23:54:37 +01:00
<link rel="stylesheet" href="{% static 'css/inventory.css' %}">
2017-12-25 00:37:31 +01:00
</head>
<body>
2017-12-25 13:56:22 +01:00
<a href="{% url 'index' %}">Home</a>
2017-12-25 00:37:31 +01:00
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}
</body>
<footer>
{% block footer %}
<p>Created by Andreas Zweili licensed under GPL v3.0</p>
2017-12-25 00:37:31 +01:00
{% endblock %}
</footer>
</html>