{% extends "layout.html" %} {% block js %} $('#delete-project').click(function(){ var link = $(this).find('button'); link.click(function(){ if ($(this).hasClass("confirm")){ return true; } $(this).html("{{_("Are you sure?")}}"); $(this).addClass("confirm"); return false; }); }); $('.custom-file-input').on('change', function(event) { var filename = [].slice.call(this.files).map(function (file) { return file.name}).join(',') var $labelElement = $(this).parents('.custom-file').find('.custom-file-label') $labelElement.text(filename) }) {% endblock %} {% block content %}
{{ _('Download the list of bills with owner, amount, reason,... ') }}
{{ _('Download the list of transactions needed to settle the current bills.') }}