SOITA/templates/base.html

45 lines
1.5 KiB
HTML
Raw Normal View History

2021-12-08 19:28:56 +01:00
<!DOCTYPE html>
2021-12-09 23:25:35 +01:00
{% load static %}
2021-12-08 19:28:56 +01:00
<html lang="en">
<head>
2021-12-09 23:25:35 +01:00
<meta charset="utf-8">
<link rel="stylesheet" type="text/css" href="{% static 'style.css' %}">
<title>SOITA | {% block title %}{% endblock %}</title>
<meta name="description" content="{% block description %}{% endblock %}">
2022-01-12 10:50:34 +01:00
{% block additional_head %}
{% endblock %}
2021-12-08 19:28:56 +01:00
</head>
<body>
2021-12-09 23:25:35 +01:00
<div class="sidenav">
2022-01-25 18:17:58 +01:00
<a href="{% url 'home' %}">Strona główna</a>
<a href="{% url 'newTest' %}">Stwórz test</a>
<a href="{% url 'myTests' %}">Twoje testy</a>
<a href="{% url 'solvedTests' %}">Wyniki testów</a>
<a href="{% url 'help' %}">Pomoc</a>
<p>Kategorie</p>
2022-01-08 22:15:30 +01:00
<a href="/category/JezykPolski">Język polski</a>
<a href="/category/JezykAngielski">Język angielski</a>
2022-01-31 00:09:40 +01:00
<!-- <a href="/category/JezykNiemiecki">Język niemiecki</a>-->
2022-01-08 22:15:30 +01:00
<a href="/category/Matematyka">Matematyka</a>
<a href="/category/Informatyka">Informatyka</a>
<a href="/category/Fizyka">Fizyka</a>
<a href="/category/Chemia">Chemia</a>
<a href="/category/Biologia">Biologia</a>
<a href="/category/Geografia">Geografia</a>
<a href="/category/Historia">Historia</a>
2022-01-31 00:09:40 +01:00
<a href="/category/Inne">Inne</a>
2022-01-25 18:17:58 +01:00
<p>Konto</p>
<a href="/users/account">Ustawienia</a>
<a href="/users/logout">Wyloguj</a>
2021-12-09 23:25:35 +01:00
</div>
<div id="content", name="content", class="main">
{% block content %}
{% endblock %}
</div>
2021-12-08 19:28:56 +01:00
</body>
</html>