mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
styling & usability
This commit is contained in:
parent
03bb52f4c1
commit
a6825cdcb7
2 changed files with 9 additions and 2 deletions
|
@ -7,7 +7,7 @@
|
|||
{% block content %}
|
||||
|
||||
<h2>Welcome on your budget manager</h2>
|
||||
<p>You're sharing a house, are going on holidays with friends or are simply sharing money with others, we can help!</p>
|
||||
<p>You're sharing a house? are going on holidays with friends? are simply sharing money with others? We can help!</p>
|
||||
<div class="row">
|
||||
<div class="span8 columns">
|
||||
<form action="{{ url_for('authenticate') }}" method="post">
|
||||
|
|
|
@ -50,9 +50,16 @@
|
|||
</ul>
|
||||
<ul class="nav secondary-nav">
|
||||
<li class="menu">
|
||||
<a href="#" class="menu">Options</a>
|
||||
<a href="#" class="menu"><strong>{{ g.project.name }}</strong> options</a>
|
||||
<ul class="menu-dropdown" style="display: none; ">
|
||||
<li><a href="">Project settings</a></li>
|
||||
<li class="divider"></li>
|
||||
{% for id, name in session['projects'] %}
|
||||
{% if id != g.project.id %}
|
||||
<li><a href="{{ url_for("list_bills", project_id=id) }}">switch to {{ name }}</a></li>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
<li><a href="{{ url_for("create_project") }}">Start a new project</a></li>
|
||||
<li class="divider"></li>
|
||||
<li><a href="{{ url_for("exit") }}">Logout</a></li>
|
||||
</ul>
|
||||
|
|
Loading…
Reference in a new issue