Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .gitignore
Binary file not shown.
8 changes: 8 additions & 0 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Binary file removed supportlab.db
Binary file not shown.
3 changes: 2 additions & 1 deletion templates/reports.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,5 @@
{% block title %}Rapports{% endblock %}


{% block content %}
{% block content %}
{% endblock %}
Loading