如何设计 django 中已经存在的表单样式
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 auth 附带的视图并用您自己的表单覆盖表单参数:
更多信息 此处。
You can use the views that come with auth and override the form parameter with your own form:
More info here.
标准方法是子类化 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 justself.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 afterinclude('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 ;)