如何设计 django 中已经存在的表单样式

发布于 2024-11-28 06:13:21 字数 120 浏览 1 评论 0原文

我正在使用 django 注册。我想更新“django.contrib.auth.forms”中的 AuthenticationForm。具体来说,我想传递“attrs”字典来添加一些属性。如何更新 django 自带的表单?

I'm using django-registration. I'd like to update the AuthenticationForm in 'django.contrib.auth.forms'. Specifically, I would like to pass the 'attrs' dict to add a few attributes. How do I update a form that comes with django?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

徒留西风 2024-12-05 06:13:21

您可以使用 auth 附带的视图并用您自己的表单覆盖表单参数:

django.contrib.auth.views.login(request[, template_name, redirect_field_name, authentication_form])

更多信息 此处

You can use the views that come with auth and override the form parameter with your own form:

django.contrib.auth.views.login(request[, template_name, redirect_field_name, authentication_form])

More info here.

陌伤ぢ 2024-12-05 06:13:21

标准方法是子类化 AuthenticationForm,更改构造函数中的 attrs,将表单传递给登录视图并在 urls.py 中写入新条目。

这是一场噩梦:为了向字段添加 html 属性,有必要使用 python 子类化,以了解 django 的表单元类到底如何工作(self.fields['field'].widget.attrs ,不仅仅是 self.field.widget.attrs),了解正则表达式(对于 urls.py),了解 django 的 urls.py 是如何工作的(你应该将最重要的行放在 include('django.contrib.auth.urls')?) 之前或之后,并了解从哪里导入身份验证表单和身份验证视图。

现在“商业中断”:只需使用 http://pypi.python.org/pypi /django-widget-tweaks 来完成您的任务;)

The standard way is to subclass AuthenticationForm, change the attrs in constructor, pass the form to login view and write a new entry in urls.py.

This is a nightmare: in order to add html attribute to a field it is necessary to use python subclassing, to know how exactly django's form metaclass work (self.fields['field'].widget.attrs, not just self.field.widget.attrs), to know regexes (for urls.py), to know how django's urls.py work (should you put the overriding line before of after include('django.contrib.auth.urls')?) and to know where is the auth form and auth view imported from.

And now the "commercial break": just use http://pypi.python.org/pypi/django-widget-tweaks for your task ;)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文