Add the accounts page placeholder
This proves out that my navigation works the way that I want and that my auto context variables are working. Currently we don't do much but say they have no accounts, but we can build that up over time
This commit is contained in:
parent
e1f39bb852
commit
0aecabea75
3 changed files with 17 additions and 0 deletions
7
templates/accounts.html
Normal file
7
templates/accounts.html
Normal file
|
@ -0,0 +1,7 @@
|
|||
{% extends 'layout.html' %}
|
||||
{% block main_content %}
|
||||
<h1>Accounts</h1>
|
||||
{% if not accounts %}
|
||||
<p>You don't have any accounts yet. Let's create some</p>
|
||||
{% endif %}
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue