From f681c981c6fb5337f7448711d40c609b78099286 Mon Sep 17 00:00:00 2001 From: Thomas Girod Date: Mon, 26 Dec 2022 18:51:04 +0100 Subject: [PATCH] remove csrf_token --- eboutic/templates/eboutic/eboutic_makecommand.jinja | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/eboutic/templates/eboutic/eboutic_makecommand.jinja b/eboutic/templates/eboutic/eboutic_makecommand.jinja index eb2f6def..1256c72e 100644 --- a/eboutic/templates/eboutic/eboutic_makecommand.jinja +++ b/eboutic/templates/eboutic/eboutic_makecommand.jinja @@ -103,7 +103,6 @@

{% endif %}
- {% csrf_token %} @@ -129,8 +128,7 @@ const create_billing_info_url = '{{ url("counter:create_billing_info", user_id=request.user.id) }}' const edit_billing_info_url = '{{ url("counter:edit_billing_info", user_id=request.user.id) }}'; const et_data_url = '{{ url("eboutic:et_data") }}' - let billing_info_exist = - {{ "true" if billing_infos else "false" }} + let billing_info_exist = {{ "true" if billing_infos else "false" }} {% if billing_infos %} const et_data = {{ billing_infos|tojson }}