45 lines
1.5 KiB
HTML
45 lines
1.5 KiB
HTML
<!DOCTYPE html>
|
|
{% load static %}
|
|
<html lang="en">
|
|
<head>
|
|
<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 %}">
|
|
{% block additional_head %}
|
|
{% endblock %}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="sidenav">
|
|
<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>
|
|
<a href="/category/JezykPolski">Język polski</a>
|
|
<a href="/category/JezykAngielski">Język angielski</a>
|
|
<!-- <a href="/category/JezykNiemiecki">Język niemiecki</a>-->
|
|
<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>
|
|
<a href="/category/Inne">Inne</a>
|
|
<p>Konto</p>
|
|
<a href="/users/account">Ustawienia</a>
|
|
<a href="/users/logout">Wyloguj</a>
|
|
</div>
|
|
|
|
<div id="content", name="content", class="main">
|
|
{% block content %}
|
|
{% endblock %}
|
|
</div>
|
|
</body>
|
|
|
|
</html>
|
|
|