Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我目前正在使用 Django 的内置登录视图,其中包含一个供用户登录的表单,并且具有以下内容:
{% if form.username.errors %}<p class="error">{{ form.username.errors }}</p>{% endif %}
对于每个字段。我想将所有错误消息移动到工具提示中或全部移动到登录框的顶部,所以我只想显示第一条错误消息。有没有一种干净的方法可以做到这一点?
与任何类似列表的对象一样,您可以使用first模板过滤器:
first
{{ form.username.errors|first }}