v1.2 - Dashboard with charts, Import/Export CSV, 17 dépenses

This commit is contained in:
h3r7
2026-02-28 08:53:48 +01:00
parent 64c7a976f7
commit b40bf56c97
4 changed files with 368 additions and 2 deletions

5
app.py
View File

@@ -30,6 +30,11 @@ def index():
with open('/home/h3r7/depenses_trello/templates/index.html', 'r') as f:
return f.read()
@app.route('/dashboard')
def dashboard():
with open('/home/h3r7/depenses_trello/templates/dashboard.html', 'r') as f:
return f.read()
# API Config
@app.route('/api/config')
def get_config():