python django怎么添加css-CSDN论坛
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python django怎么添加css-CSDN论坛相关的知识,希望对你有一定的参考价值。
参考技术A python django添加css:和正常的HTML一样,不过使用Django父子模板,全站、模块、页面三级CSS文件更好布局一点。本回答被提问者采纳 参考技术B 《送孟浩然之广陵》作者:李白
Python/Django django-registration 添加一个额外的字段
【中文标题】Python/Django django-registration 添加一个额外的字段【英文标题】:Python/Django django-registration add an extra field 【发布时间】:2013-01-21 12:18:25 【问题描述】:我已经阅读了很多关于如何在使用 Django 注册时添加额外字段的信息,例如 here、here 和 here。代码 sn-ps 是: forms.py(来自注册应用)
class RegistrationForm(forms.Form):
username = forms.RegexField(regex=r'^\w+$', max_length=30, widget=forms.TextInput(attrs=attrs_dict), label=_("Username"), error_messages= 'invalid': _("This value must contain only letters, numbers and underscores.") )
email = forms.EmailField(widget=forms.TextInput(attrs=dict(attrs_dict, maxlength=75)), label=_("Email"))
password1=forms.CharField(widget=forms.PasswordInput(attrs=attrs_dict, render_value=False), label=_("Password"))
institute=forms.CharField(max_length=50) #This is the new!
password2 = forms.CharField(widget=forms.PasswordInput(attrs=attrs_dict, render_value=False), label=_("Password (again)"))
captcha = CaptchaField()
我使用django的注册保存方法,在默认后端:
def register(self, request, **kwargs):
username, email, password = kwargs['username'], kwargs['email'], kwargs['password1']
if Site._meta.installed:
site = Site.objects.get_current()
else:
site = RequestSite(request)
new_user = RegistrationProfile.objects.create_inactive_user(username, email,
password, site)
signals.user_registered.send(sender=self.__class__,
user=new_user,
request=request)
return new_user
在 models.py 中我创建了一个新类:
class UserProfile(models.Model):
user = models.OneToOneField(User)
institute=models.CharField(max_length=50)
def create_user_profile(sender, instance, created, **kwargs):
if created:
profile, created = UserProfile.objects.get_or_create(user=instance)
post_save.connect(create_user_profile, sender=User)
在 admin.py 中:
admin.site.unregister(User)
class UserProfileInline(admin.StackedInline):
model = UserProfile
class UserProfileAdmin(UserAdmin):
inlines = [ UserProfileInline, ]
admin.site.register(User, UserProfileAdmin)
我也没有改变任何东西。当我渲染表单时,我可以看到我添加的 Institute Field。当我在管理站点中时,我可以看到每个用户的用户配置文件。但是,当我创建新用户时,没有保存任何内容,而通常会保存用户的其他详细信息。我认为我需要某种配置,但在哪里?也许在 Django-registration 应用程序的文件中?
【问题讨论】:
你发的RegistrationForm
不完整,保存方法在哪里?
我使用的是django管理的后端方法,我已经将它包含在原帖中。可能这里的某个地方有问题..
【参考方案1】:
我已经找到了解决这个问题的方法,我会在这里发布以防有人使用它。这很简单,我想。
第 1 步在 models.py 中添加一个新模型,这将是一个配置文件:
#models.py
class user_profile(models.Model):
user=models.ForeignKey(User, unique=True)
institution=models.CharField(max_length=200)
def __unicode__(self):
return u'%s %s' % (self.user, self.institution)
第 2 步创建将使用此模型的表单:
#forms.py
from registration.forms import RegistrationForm
from django.forms import ModelForm
from Test.models import user_profile
class UserRegForm(RegistrationForm):
institution=forms.CharField(max_length=200)
第 3 步创建 ragbackend.py 并定义数据的保存方式:
from Test.models import user_profile
from forms import *
def user_created(sender, user, request, **kwargs):
form = UserRegForm(request.POST)
data = user_profile(user=user)
data.institution = form.data["institution"]
data.save()
from registration.signals import user_registered
user_registered.connect(user_created)
第 4 步转到 urls.py 并进行以下更改:
import regbackend
from registration.views import register
url(r'^accounts/register/$', register, 'backend': 'registration.backends.default.DefaultBackend','form_class': UserRegForm, name='registration_register'),
(r'^accounts/', include('registration.urls')),
请注意,您必须按该顺序放置 URL。很容易理解为什么。
第 5 步 现在一切正常,但您无法在管理站点中看到信息。所以你必须去 admin.py 并添加:
#admin.py
from django.contrib.auth.models import User
from Test.models import user_profile
admin.site.unregister(User)
class UserProfileInline(admin.StackedInline):
model = user_profile
class UserProfileAdmin(UserAdmin):
inlines = [ UserProfileInline, ]
admin.site.register(User, UserProfileAdmin)
就是这样。不要忘记runserver
之前的syncdb
。我希望这会对某人有所帮助。
【讨论】:
真的在为此苦苦挣扎(也尝试过其他方法,所以越来越绝望!)。您的解决方案给了我一个数据库事务错误,如下所述。你能帮我吗? ***.com/questions/23695713/…【参考方案2】:除了 Garrett 的回答之外,我在 django-registration 版本 0.8 中遇到“无法导入名称注册”错误。我相信这是因为基于类的视图,因此请相应地更新urls.py
:
from django.conf.urls import patterns, include, url
from registration.backends.default.views import RegistrationView
from abby.apps.accounts.forms import UserRegForm
urlpatterns = patterns('',
url(r'^register/$', RegistrationView.as_view(form_class=UserRegForm)),
)
【讨论】:
以上是关于python django怎么添加css-CSDN论坛的主要内容,如果未能解决你的问题,请参考以下文章
python django 中生成 Authorization token