diff --git a/routes.py b/routes.py index 15d789f..dd33ae1 100644 --- a/routes.py +++ b/routes.py @@ -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(): diff --git a/templates/pages/receipts.html b/templates/pages/receipts.html index 86dd383..cb3be56 100644 --- a/templates/pages/receipts.html +++ b/templates/pages/receipts.html @@ -4,8 +4,14 @@ {% block content %} + +
-{% include "modules/calendar.html" %} + Unfinished
{% endblock %} \ No newline at end of file