Add simple page for showing details about a single account

For now this just includes the transactions that we know about on the
account. It'll grow. Give it time
This commit is contained in:
Eli Ribble 2016-06-28 16:07:59 -06:00
parent 2cc0cfb2bb
commit ccdd03b04b
4 changed files with 46 additions and 1 deletions

View file

@ -6,7 +6,7 @@
<tr><th>Name</th><th>Type</th><th>Institution</th><th>Last Update</th><th></th></tr>
{% for account in accounts %}
<tr>
<td>{{ account.name }}</td>
<td><a href="/accounts/{{ account.uuid }}/">{{ account.name }}</a></td>
<td>{{ account.type }}</td>
<td>{{ account.source.name }}</td>
<td>{{ account.last_updated }}</td>