Questions tagged «django-allauth»

8
使用django-allauth时如何自定义用户配置文件
我有一个django-allauth应用程序的django项目。我需要在注册时从用户那里收集其他数据。我在这里遇到了类似的问题, 但不幸的是,没有人回答个人资料定制部分。 根据提供的文档django-allauth: ACCOUNT_SIGNUP_FORM_CLASS(= None) 指向自定义表单类(例如‘myapp.forms.SignupForm’)的字符串,在注册过程中使用该字符串来询问用户其他输入(例如,简报注册,生日)。此类应实现一个‘save’方法,接受新注册的用户作为其唯一参数。 我是django的新手,正在为此而苦苦挣扎。有人可以提供这种自定义表单类的示例吗?我是否还需要添加模型类以及指向用户对象的链接,就像这样 ?

15
Django 1.10.1'my_templatetag'不是注册的标签库。必须是以下之一:
我想要一个菜单​​,可以根据您所属的组进行定制。我正在使用Django 1.10.1,allauth等。当我试图使我的templatetag失败时,它说: TemplateSyntaxError at / 'my_templatetag' is not a registered tag library. Must be one of: account account_tags admin_list admin_modify admin_static admin_urls cache i18n l10n log socialaccount socialaccount_tags static staticfiles tz “ my_templatetag.py”看起来像这样: from django import template from django.contrib.auth.models import Group register = template.Library() @register.filter(name='has_group') def has_group(user, group_name): group = …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.