Files
walletmonitor/apps/core/templates/base.html
T

32 lines
1.3 KiB
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>
<a class="right" href="{{ ABOUT_URL }}" target="_blank">About</a>
<a class="right" href="https://github.com/tpokorra/walletmonitor" target="_blank">Fork me</a>
</nav>
{% else %}
<nav class="topnav">
<a href="/">Wallet Monitor</a>
<a class="right" href="{{ ABOUT_URL }}" target="_blank">About</a>
<a class="right" href="https://github.com/tpokorra/walletmonitor" target="_blank">Fork me</a>
</nav>
{% endif %}
{% block content %}
{% endblock %}
</body>
</html>