86 lines
3.1 KiB
HTML
86 lines
3.1 KiB
HTML
{% load static %}
|
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>OnBoard</title>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
|
<link rel="shortcut icon" type="image/png" href="{% static 'favicon.ico' %}"/>
|
|
|
|
<link rel="preconnect" href="https://fonts.googleapis.com">
|
|
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
|
<link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static "styles/normalize.css" %}">
|
|
<link rel="stylesheet" type="text/css" href="{% static "styles/main.css" %}">
|
|
|
|
{% block head %}
|
|
{% endblock %}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
<nav class="navbar__desktop">
|
|
{% if user.is_authenticated %}
|
|
<form class="nav__search" action="{% url 'search-results' %}" method="GET">
|
|
<input name="q" type="search" placeholder="Search...">
|
|
</form>
|
|
<div class="nav__employees">
|
|
<a href="{% url 'employee-list' %}">Employees</a>
|
|
</div>
|
|
<div class="nav__auth">
|
|
{% if user.first_name or user.last_name %}
|
|
<a href="{% url 'account-detail' user.pk %}">{{ user.first_name }} {{ user.last_name }}</a>
|
|
{% else %}
|
|
<a href="{% url 'account-detail' user.pk %}">Profile</a>
|
|
{% endif %}
|
|
<a class="action-button" href="{% url 'logout' %}">Logout</a>
|
|
</div>
|
|
{% else %}
|
|
<a class="nav__login" class="action-button" href="{% url 'login' %}">Login</a>
|
|
{% endif %}
|
|
</nav>
|
|
<nav class="navbar__mobile">
|
|
{% if user.is_authenticated %}
|
|
<details class="menu_">
|
|
<summary class="menu__title">Menu</summary>
|
|
<dl class="menu__items">
|
|
<dt>
|
|
<form class="nav__search" action="{% url 'search-results' %}" method="GET">
|
|
<input name="q" type="text" placeholder="Search...">
|
|
</form>
|
|
</dt>
|
|
<br>
|
|
<dt><a href="{% url 'employee-list' %}">Employees</a></dt>
|
|
<br>
|
|
<dt><a class="action-button" href="{% url 'logout' %}">Logout</a></dt>
|
|
</dl>
|
|
</details>
|
|
{% else %}
|
|
<a class="nav__login" class="action-button" href="{% url 'login' %}">Login</a>
|
|
{% endif %}
|
|
</nav>
|
|
</header>
|
|
|
|
<aside>
|
|
{% if messages %}
|
|
<div class="messages panel">
|
|
{% for message in messages %}
|
|
<span {% if message.tags %} class="{{ message.tags }} messages__message"{% endif %}>{{ message }}</span>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% block aside %}
|
|
{% endblock %}
|
|
</aside>
|
|
|
|
<main>
|
|
{% block content %}
|
|
{% endblock %}
|
|
</main>
|
|
|
|
<footer>
|
|
</footer>
|
|
</body>
|
|
</html>
|