68 lines
No EOL
1 KiB
HTML
68 lines
No EOL
1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="de">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>ING Auswertung</title>
|
|
</head>
|
|
<body>
|
|
|
|
<h1>ING Auswertung</h1>
|
|
<p>
|
|
<a href="/categories">Kategorien</a>
|
|
</p>
|
|
<hr>
|
|
|
|
<h2>Kontostand</h2>
|
|
|
|
<form action="/run/balance" method="post">
|
|
<button type="submit">
|
|
balance.py starten
|
|
</button>
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h2>Transaktionen</h2>
|
|
|
|
<form action="/run/transactions" method="post">
|
|
|
|
Jahr:
|
|
<input type="text"
|
|
name="year"
|
|
placeholder="2026">
|
|
|
|
KW:
|
|
<input type="text"
|
|
name="week"
|
|
placeholder="25">
|
|
|
|
<button type="submit">
|
|
transactions.py starten
|
|
</button>
|
|
|
|
</form>
|
|
|
|
<hr>
|
|
|
|
<h2>Kategorisierung</h2>
|
|
|
|
<form action="/run/categorize" method="post">
|
|
|
|
Jahr:
|
|
<input type="text"
|
|
name="year"
|
|
placeholder="2026">
|
|
|
|
KW:
|
|
<input type="text"
|
|
name="week"
|
|
placeholder="25">
|
|
|
|
<button type="submit">
|
|
categorize_transactions.py starten
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</body>
|
|
</html> |