You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
413 B
HTML
11 lines
413 B
HTML
{% extends 'includes/base.html' %}
|
|
|
|
{% block content %}
|
|
<h1>Manage Wallets</h1>
|
|
<a class="button outline primary" href="{{ url_for('wallet.add') }}">Add a Wallet</a>
|
|
<div class="content">
|
|
{% for wallet in wallets %}
|
|
<p>{{ wallet.id }} - <a href="{{ url_for('wallet.show', id=wallet.id) }}">{{ wallet.name }}</a> - {{ wallet.description }} - {{ wallet.date }}</p>
|
|
{% endfor %}
|
|
</div>
|
|
{% endblock %} |