-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtransactions.html
More file actions
29 lines (19 loc) · 855 Bytes
/
transactions.html
File metadata and controls
29 lines (19 loc) · 855 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<html>
<head>
<title>Interpretthis - Budget app : Transactions listing</title>
<link type="text/css" rel="stylesheet" href="/stylesheets/budget.css" />
</head>
<body>
<div id="content">
<h1>Interpretthis - Budget app - {{ user.nickname|escape }}</h1>
<br></br>
{% for tran in trans %}
<b>{{ tran.pretty_date }}</b>,
Value: <b>{{ tran.amount }}</b>, Note: {{ tran.note|escape }}
<br></br>
{% endfor %}
<a href="{{ url }}">{{ url_linktext }}</a>
<p>A web application to help you watch your budget, written by Hansel Dunlop. Send comments or feature requests to hansel (at) interpretthis.org interpretthis.org.</p>
</div>
</body>
</html>