mirror of
https://github.com/YunoHost-Apps/ihatemoney_ynh.git
synced 2024-09-03 19:26:15 +02:00
be32a2550e
Remove unused libs (QTip, JQueryUI) and add bootstrap-datepicker which is much lighter.
26 lines
777 B
HTML
26 lines
777 B
HTML
{% extends "layout.html" %}
|
|
|
|
{% block head %}
|
|
<script src="{{ url_for("static", filename="js/jquery-ui.js") }}"></script>
|
|
{% if g.lang != "en" %}
|
|
<script src="{{ url_for("static", filename="js/i18n/jquery.ui.datepicker-%s.js" % g.lang ) }}"></script>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block js %}
|
|
$('#cancel-form').click(function(){location.href={{ url_for(".list_bills") }};});
|
|
$.datepicker.setDefaults({'dateFormat': 'yy-mm-dd'});
|
|
$(".datepicker").datepicker($.datepicker.regional['{{ g.lang }}']);
|
|
|
|
{% 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.add_bill(form, edit) }}
|
|
</form>
|
|
{% endblock %}
|