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-13 23:24:24 +01:00
|
|
|
<a href="/home">Home</a>
|
2021-12-23 14:03:12 +01:00
|
|
|
<a href="/test/create">Create test</a>
|
|
|
|
<a href="/users/tests">Your tests</a>
|
|
|
|
<p>Categories</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>
|
|
|
|
<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>
|
2021-12-23 14:03:12 +01:00
|
|
|
<p>Account</p>
|
|
|
|
<a href="/users/account">Settings</a>
|
|
|
|
<a href="/users/logout">Logout</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>
|
|
|
|
|