使用ListView返回模板上的标签

时间:2015-01-21 20:11:44

标签: django listview django-templates

我们通常会执行以下命令来返回项目列表。

{% for occupation in occupation_list %}
    <tr>
        <td>{{ occupation.occupation }}</td>
    </tr>
{% endfor %}

我的问题是:如何返回字段名称?

类似的东西:

{% for occupation in fields %}
    <tr>
        <td>{{ occupation.occupation_label }}</td>
    </tr>
{% endfor %}

0 个答案:

没有答案