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:
Eli Ribble 2016-06-09 10:19:08 -06:00
parent e1f39bb852
commit 0aecabea75
3 changed files with 17 additions and 0 deletions

7
templates/accounts.html Normal file
View 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 %}