在 django 管理员更改列表模板中有一个块:
{% block result_list %}
{% if action_form and actions_on_top and cl.show_admin_actions %}{% admin_actions %}{% endif %}
{% result_list cl %}
{% if action_form and actions_on_bottom and cl.show_admin_actions %}{% admin_actions %}{% endif %}
{% endblock %}
我想知道是做{% result_list cl %}
什么的,即是什么cl
意思?我在文档中找不到它。