mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
98ea1c8873
Conflicts: conf/nginx.conf sources/budget/run.py sources/budget/utils.py
17 lines
384 B
HTML
17 lines
384 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block js %}
|
|
$('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
|
|
{% endblock %}
|
|
|
|
|
|
{% block top_menu %}
|
|
<a href="{{ url_for(".list_bills") }}">{{ _("Back to the list") }}</a>
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<form class="form-horizontal" method="post">
|
|
{{ forms.edit_member(form, edit) }}
|
|
</form>
|
|
{% endblock %}
|