diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..2b5ab9e Binary files /dev/null and b/.gitignore differ diff --git a/app.py b/app.py index 7bb9e44..184bb22 100644 --- a/app.py +++ b/app.py @@ -112,5 +112,13 @@ def delete_ticket(ticket_id): return redirect(url_for("tickets_list")) +@app.route("/reports") +def reports(): + return render_template("reports.html") + +@app.route("/settings") +def settings(): + return render_template("settings.html") + if __name__ == "__main__": app.run(debug=True) diff --git a/supportlab.db b/supportlab.db deleted file mode 100644 index 0000b40..0000000 Binary files a/supportlab.db and /dev/null differ diff --git a/templates/reports.html b/templates/reports.html index d85a738..584c9b6 100644 --- a/templates/reports.html +++ b/templates/reports.html @@ -3,4 +3,5 @@ {% block title %}Rapports{% endblock %} -{% block content %} \ No newline at end of file +{% block content %} +{% endblock %} \ No newline at end of file