Receipts unfinished on site

This commit is contained in:
Emily 2019-05-27 15:59:09 +01:00
parent 85f720af87
commit 0d0472adba
2 changed files with 8 additions and 2 deletions

View File

@ -90,7 +90,7 @@ def warranties():
@glob.app.route("/receipts", methods = ["GET", "POST"])
@flask_login.login_required
def receipts():
return "Unimplemented"
return render_template("pages/receipts.html")
@glob.app.route("/login", methods = ["GET", "POST"])
def login():

View File

@ -4,8 +4,14 @@
{% block content %}
<style id="grid">
.container.module:nth-child(1n) {
grid-area: 1 / 1 / 5 / 5;
}
</style>
<div class="container module">
{% include "modules/calendar.html" %}
<a>Unfinished</a>
</div>
{% endblock %}