format base

This commit is contained in:
Andreas Zweili 2021-12-10 18:56:56 +01:00
parent 11d23f4cb8
commit 9f6d68fbbc
1 changed files with 10 additions and 9 deletions

View File

@ -1,14 +1,15 @@
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="{% static "core/css/bootstrap.min.css" %}">
<link rel="stylesheet" type="text/css" href="{% static "core/css/material-icons.css" %}">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="{% static 'core/img/favicon.ico' %}"/>
<title>Network Inventory</title>
</head>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<link rel="stylesheet" type="text/css" href="{% static 'core/css/bootstrap.min.css' %}">
<link rel="stylesheet" type="text/css" href="{% static 'core/css/material-icons.css' %}">
<link rel="shortcut icon" type="image/vnd.microsoft.icon" href="{% static 'core/img/favicon.ico' %}" />
<title>Network Inventory</title>
</head>
<body>
<div class="container">
<a href="{% url 'customers' %}">Home</a> |
@ -19,7 +20,7 @@
{% if user.is_authenticated %}
<a href="{% url 'logout' %}">Logout</a> |
{% else %}
<a href="{% url 'login' %}" >Login</a> |
<a href="{% url 'login' %}">Login</a> |
{% endif %}
<h1>{% block section_title %}Device Inventory{% endblock %}</h1>
{% block content %}{% endblock %}