network_inventory/core/templates/core/base.html

29 lines
939 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>
<link rel="stylesheet" type="text/css" href="{% static "core/semantic.min.css" %}">
<title>Network Inventory</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2017-12-25 00:37:31 +01:00
</head>
<body>
2019-08-02 12:21:05 +02:00
<div class="ui container">
<a href="{% url 'customers' %}">Home</a> |
<a href="{% url 'all_computers' %}">All Computers</a> |
{% if user.is_authenticated %}
<a href="{% url 'logout' %}">Logout</a> |
{% else %}
<a href="{% url 'login' %}" >Login</a> |
{% endif %}
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>
<script type="text/javascript" src="{% static "core/semantic.min.js" %}"></script>
2017-12-27 17:50:25 +01:00
</body>
2017-12-25 00:37:31 +01:00
</html>