timetracker/src/web/tracker/templates/base.html

46 lines
2.2 KiB
HTML
Raw Normal View History

2022-12-31 13:18:27 +00:00
<!doctype html>
<html lang="en">
{% load static %}
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
2023-01-03 18:03:30 +00:00
<title>Timetracker - {% block title %}Untitled{% endblock title %}</title>
2022-12-31 13:18:27 +00:00
<link rel="stylesheet" href="https://rsms.me/inter/inter.css">
<link rel="stylesheet" href="{% static 'base.css' %}" />
</head>
2023-01-02 18:37:49 +00:00
<body class="dark">
<div class="dark:bg-gray-800 min-h-screen">
2023-01-03 18:03:30 +00:00
<nav class="mb-4 bg-white dark:bg-gray-900 border-gray-200 rounded">
<div class="container flex flex-wrap items-center justify-between mx-auto">
2023-01-04 16:22:36 +00:00
<a href="{% url 'index' %}" class="flex items-center">
2023-01-03 18:03:30 +00:00
<span class="text-4xl"></span>
<span class="self-center text-xl font-semibold whitespace-nowrap text-white">Timetracker</span>
</a>
<div class="w-full md:block md:w-auto">
<ul
2023-01-03 18:01:10 +00:00
class="flex flex-col md:flex-row p-4 mt-4 dark:text-white">
2023-01-03 18:03:30 +00:00
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_game' %}">New Game</a></li>
2023-01-04 16:23:34 +00:00
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_platform' %}">New Platform</a></li>
{% if game_available and platform_available %}
2023-01-03 18:03:30 +00:00
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_purchase' %}">New Purchase</a></li>
{% endif %}
{% if purchase_available %}
2023-01-03 18:03:30 +00:00
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'add_session' %}">New Session</a></li>
{% endif %}
{% if session_count > 0 %}
2023-01-03 18:03:30 +00:00
<li><a class="block py-2 pl-3 pr-4 hover:underline" href="{% url 'list_sessions' %}">All Sessions</a></li>
{% endif %}
2023-01-03 18:03:30 +00:00
</ul>
</div>
2022-12-31 13:18:27 +00:00
</div>
2023-01-03 18:03:30 +00:00
</nav>
{% block content %}No content here.{% endblock %}
2023-01-03 18:01:10 +00:00
</div>
2023-01-03 20:35:09 +00:00
{% load version %}
<span class="fixed left-2 bottom-2 text-xs text-slate-300 dark:text-slate-600">{% version %} ({% version_date %})</span>
2022-12-31 13:18:27 +00:00
</body>
</html>