2026-03-16 01:34:55 +00:00
|
|
|
<!doctype html>
|
|
|
|
|
|
|
|
|
|
<title>{% block title %}{% endblock %} - Myriad</title>
|
|
|
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div id="main">
|
|
|
|
|
|
|
|
|
|
<div class="container" id="nav">
|
2026-03-16 13:11:56 +00:00
|
|
|
<div class="heading">Myriad</div>
|
|
|
|
|
<div class="navitem">> <a href="{{ url_for('home.index') }}">Home</a></div>
|
|
|
|
|
<div class="navitem">> <a href="{{ url_for('home.full_list') }}">Full List</a></div>
|
|
|
|
|
|
|
|
|
|
{% if g.user %}
|
|
|
|
|
<div class="heading">Manage</div>
|
2026-03-17 03:48:28 +00:00
|
|
|
<div class="navitem">> <a href="{{ url_for('manage.new') }}">Add New Member</a></div>
|
2026-03-16 13:11:56 +00:00
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
<div class="heading">Administration</div>
|
2026-03-16 01:34:55 +00:00
|
|
|
{% if g.user %}
|
|
|
|
|
<div class="navitem">> <a href="{{ url_for('auth.logout') }}">Log out</a></div>
|
|
|
|
|
{% else %}
|
2026-03-16 13:11:56 +00:00
|
|
|
{% if config["REGISTRATION"] == True %}
|
|
|
|
|
<div class="navitem">> <a href="{{ url_for('auth.register') }}">Register</a></div>
|
|
|
|
|
{% endif %}
|
2026-03-16 01:34:55 +00:00
|
|
|
<div class="navitem">> <a href="{{ url_for('auth.login') }}">Log in</a></div>
|
|
|
|
|
{% endif %}
|
2026-03-16 13:11:56 +00:00
|
|
|
|
2026-03-16 01:34:55 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
|
|
|
|
|
|
{% block header %}{% endblock %}
|
|
|
|
|
{% for message in get_flashed_messages() %}
|
|
|
|
|
<div class="flash">{{ message }}</div>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
{% block content %}{% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
</div>
|