でstate_template.htmlを作ってみました
{% 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
、テンプレートに渡されていないため、エラーが発生しています。これを機能させる方法について誰かアイデアがありますか?