我试图用
{% load inplace_edit %}
{% block extra_header %}
{% inplace_static %}
{% endblock %}
{% inplace_edit "action.action_state" %}
而且 tables.py 有:
action_state = tables.TemplateColumn(template_name='django_tables2/state_template.html', verbose_name="State")
但是由于action
从来没有被传递给模板,所以它给出了一个错误。有人对如何使这项工作有任何想法吗?