18 lines
386 B
HTML
18 lines
386 B
HTML
{% extends "base.html"%}
|
|
{% set title = "Personal" %}
|
|
{% block content %}
|
|
<h3>TODO: </h3>
|
|
<ul>
|
|
<li>add money owed</li>
|
|
</ul>
|
|
<h1> Statistik </h1>
|
|
|
|
<h2> Bierkonsum </h2>
|
|
<img src="{{ url_for('static', filename='total.png') }}">
|
|
{% if user %}
|
|
{% set fils = "total%03d.png" % user.id %}
|
|
<img src="{{ url_for('static', filename=fils) }}">
|
|
{% endif %}
|
|
|
|
{% endblock %}
|