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:
parent
8a79f2d00c
commit
325b098345
2 changed files with 6 additions and 5 deletions
|
@ -46,6 +46,10 @@ a {
|
||||||
width: 150px;
|
width: 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.list_bills{
|
||||||
|
margin-top: 10px;
|
||||||
|
}
|
||||||
|
|
||||||
.members {
|
.members {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
margin: 0;
|
margin: 0;
|
||||||
|
|
|
@ -22,13 +22,10 @@
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div id="content" class="uniForm span-18 last">
|
<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>
|
<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>
|
|
||||||
|
|
||||||
{% if bills.count() > 0 %}
|
{% 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>
|
<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>
|
<tbody>
|
||||||
{% for bill in bills %}
|
{% for bill in bills %}
|
||||||
|
|
Loading…
Reference in a new issue