9 lines
874 B
HTML
9 lines
874 B
HTML
{% load static %}<!doctype html>
|
|
<html lang="ru"><head><meta charset="utf-8"><meta name="viewport" content="width=device-width,initial-scale=1">
|
|
<title>{% block title %}Timerr{% endblock %}</title><link rel="stylesheet" href="{% static 'app.css' %}"></head>
|
|
<body><header><a class="brand" href="{% url 'task-list' %}">Timerr</a>{% if user.is_authenticated %}<nav>
|
|
<a href="{% url 'task-list' %}">Задачи</a><a href="{% url 'monthly-report' %}">Отчёты</a>
|
|
{% if user.is_app_admin %}<a href="{% url 'company-list' %}">Компании</a><a href="{% url 'project-list' %}">Проекты</a><a href="/django-admin/">Администрирование</a>{% endif %}
|
|
<form method="post" action="{% url 'logout' %}">{% csrf_token %}<button class="link">Выйти</button></form></nav>{% endif %}</header>
|
|
<main>{% block content %}{% endblock %}</main></body></html>
|