ospaz-site/templates/base.html

29 lines
1.0 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html lang="ru">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title> {% block title %} Мониторинг резервуара {% endblock %} </title>
{% load static %}
<link rel="stylesheet" type="text/css" href="{% static 'css/style.css' %}">
{% block head %} {% endblock %}
{% block styles %} {% endblock %}
</head>
<body>
<header>
{% block header %}
<h1>{% block header-title %} Мониторинг водозаборного узла {% endblock %}</h1>
{% if user.is_authenticated %}
<div id="header-login-block">
<a href="/">На главную</a>
<a href="{% url 'account-view' %}">{{ user.login }}</a>
<a href="{% url 'logout' %}">Выход</a>
</div>
{% endif %}
{% endblock %}
</header>
<main id="content">
{% block content %} тут должен быть контент {% endblock %}
</main>
</body>
</html>