Unverified Commit 24866db5 authored by ufo911's avatar ufo911 Committed by GitHub

column_editable_list The CSRF token is missing

parent eb2bd967
...@@ -139,7 +139,7 @@ ...@@ -139,7 +139,7 @@
{% if form.csrf_token %} {% if form.csrf_token %}
{{ form[c](pk=get_pk_value(row), display_value=get_value(row, c), csrf=form.csrf_token._value()) }} {{ form[c](pk=get_pk_value(row), display_value=get_value(row, c), csrf=form.csrf_token._value()) }}
{% else %} {% else %}
{{ form[c](pk=get_pk_value(row), display_value=get_value(row, c)) }} {{ form[c](pk=get_pk_value(row), display_value=get_value(row, c), csrf=csrf_token()) }}
{% endif %} {% endif %}
{% else %} {% else %}
{{ get_value(row, c) }} {{ get_value(row, c) }}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment