2020-12-20 23:10:49 +01:00
|
|
|
{% load static %}
|
|
|
|
|
2020-11-23 21:31:14 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
2020-12-20 23:10:49 +01:00
|
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Title</title>
|
|
|
|
<link rel="stylesheet" href="{% static '/css/base.css' %}">
|
|
|
|
{% block stylesheet_hr_module_base %}
|
|
|
|
{% endblock %}
|
2020-11-23 21:31:14 +01:00
|
|
|
</head>
|
|
|
|
<body>
|
2020-12-20 23:10:49 +01:00
|
|
|
|
|
|
|
<div class="navbar">
|
2021-01-05 00:33:09 +01:00
|
|
|
|
|
|
|
{% if user.is_authenticated %}
|
|
|
|
<div class="navbar_item">
|
2021-01-10 21:10:39 +01:00
|
|
|
<a href="{% url 'logout' %}">Log out</a>
|
2021-01-05 00:33:09 +01:00
|
|
|
</div>
|
|
|
|
<div class="navbar_item">You are logged in as: {{ user }} </div>
|
|
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2020-12-20 23:10:49 +01:00
|
|
|
</div>
|
|
|
|
<div class="main_container">
|
|
|
|
|
|
|
|
{% block core_content %}
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2020-11-23 21:31:14 +01:00
|
|
|
</body>
|
|
|
|
</html>
|