我用这种方式填充表格
@ofert.user
我需要从状态转换值,但它不起作用。 post.status在数据库 PO_DRAFT 和 PO_ACCEPT 中只有2个值,我需要翻译。可能吗? 我试过这种方式,但这是错误的
<tbody>
{% for post in posts %}
<tr>
<td>{{ post.title }}</td>
<td>{{ post.status }}</td>
</tr>
{% endfor %}
</tbody>