blob: eefbc0624bdcaf0165d33e5475df9beb24c008be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
<!doctype html>
<title>{% block title %}{% endblock %} - u-stayML</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<link rel="shortcut icon" href="{{ url_for('static', filename='favicon.ico') }}">
<nav>
<h1><a href="{{ url_for('index') }}">u-stayML</a></h1>
<ul>
<li><a href="#">Dashboard</a></li>
<li><a href="{{ url_for('students.index') }}">Estudiantes</a></li>
<li><a href="#">Historial</a> </li>
<li><a href="{{ url_for('load_data.index') }}">Cargar datos</a> </li>
</ul>
<ul>
{% if g.user %}
<li><span>{{ g.user['username'] }}</span>
<li><a href="{{ url_for('auth.logout') }}">Log Out</a>
{% else %}
<li><a href="{{ url_for('auth.register') }}">Register</a>
<li><a href="{{ url_for('auth.login') }}">Log In</a>
{% endif %}
</ul>
</nav>
<section class="content">
<header>
{% block header %}{% endblock %}
</header>
{% for message in get_flashed_messages() %}
<div class="flash">{{ message }}</div>
{% endfor %}
{% block content %}{% endblock %}
</section>
|