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:
parent
2cc0cfb2bb
commit
ccdd03b04b
4 changed files with 46 additions and 1 deletions
|
|
@ -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>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue