1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ihatemoney_ynh.git synced 2024-09-03 19:26:15 +02:00

Margin added between the add bill button and the bill list.

This commit is contained in:
Frédéric Sureau 2011-08-10 13:16:46 +02:00
parent 8a79f2d00c
commit 325b098345
2 changed files with 6 additions and 5 deletions

View file

@ -46,6 +46,10 @@ a {
width: 150px;
}
.list_bills{
margin-top: 10px;
}
.members {
list-style-type: none;
margin: 0;

View file

@ -22,13 +22,10 @@
</form>
</div>
<div id="content" class="uniForm span-18 last">
<a class="awesome button fright" href="{{ url_for('add_bill', project_id=project.id) }}">Add a bill</a>
<form id="add_bill" action="{{ url_for('add_bill', project_id=project.id) }}" method="post" style="width: 400px; display: none">
{{ forms.add_bill(bill_form) }}
</form>
<a class="awesome button fright" href="{{ url_for('add_bill', project_id=project.id) }}">Add a bill</a>
{% if bills.count() > 0 %}
<table>
<table class="list_bills">
<thead><tr><th>When?</th><th>Who paid?</th><th>For what?</th><th>Owers</th><th>How much?</th><th>Actions</th></tr></thead>
<tbody>
{% for bill in bills %}