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

16 lines
384 B
HTML
Raw Normal View History

2011-03-10 03:37:21 +01:00
{% extends "layout.html" %}
2011-07-29 17:14:33 +02:00
{% block top_menu %}
<a href="{{ url_for('list_bills') }}">Back to the list</a>
2011-07-29 17:14:33 +02:00
{% endblock %}
2011-03-10 03:37:21 +01:00
{% block content %}
2011-07-31 23:55:02 +02:00
<h2>Add a new bill</h2>
2011-03-10 03:37:21 +01:00
2011-07-31 23:55:02 +02:00
<div class="container span-24 add-bill uniForm" style="width: 400px">
<form action="{{ url_for('add_bill') }}" method="post" class=uniForm">
2011-07-31 23:55:02 +02:00
{{ forms.add_bill(form) }}
2011-03-10 03:37:21 +01:00
</form>
2011-07-31 23:55:02 +02:00
</div>
2011-03-10 03:37:21 +01:00
{% endblock %}