Files
walletmonitor/apps/core/templates/base.html
T
2021-01-07 22:12:05 +01:00

24 lines
884 B
HTML

{% load static %}
<html>
<head>
<title>Wallet Monitor</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{% static 'Skeleton/css/normalize.css' %}">
<link rel="stylesheet" href="{% static 'Skeleton/css/skeleton.css' %}">
<link rel="stylesheet" href="{% static 'css/style.css' %}">
<link rel="stylesheet" href="{% static 'css/topnav.css' %}">
<link rel="stylesheet" href="{% static 'css/accordion.css' %}">
</head>
<body>
{% if user.is_authenticated %}
<nav class="topnav">
<a href="/monitor">Monitor</a>
<a href="/transactions/show">Transactions</a>
<a class="right" href="/accounts/logout/">Logout</a>
</nav>
{% endif %}
{% block content %}
{% endblock %}
</body>
</html>