- modified web interface: added stylesheet, personal page and divs;
This commit is contained in:
17
app/templates/personal.html
Normal file
17
app/templates/personal.html
Normal file
@@ -0,0 +1,17 @@
|
||||
{% 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 %}
|
||||
Reference in New Issue
Block a user