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 }}