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.
15 lines
450 B
HTML
15 lines
450 B
HTML
{% extends 'includes/base.html' %}
|
|
|
|
{% block content %}
|
|
<a class="button outline primary" href="/wallet/add">Add a Wallet</a>
|
|
<div id="wallets" 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>
|
|
<style>
|
|
.content {
|
|
padding-top: 2em;
|
|
}
|
|
</style>
|
|
{% endblock %} |