Userena is a Django application that supplies your Django project with full account management. It's a customizable application that takes care of the signup, activation, messaging and more.
Questions tagged [django-userena]
31 questions
0
votes
1 answer
How to pass my template into Django Userena signin/signup views
I'm using django-userena-ce in my project. After configuring settings.py, i run my app and tried to sign up, but it calls its own template with form. How can i pass my own html template?
I tried this code:
urlpatterns = [
…

Kanedias
- 1
0
votes
1 answer
'SignupFormExtra' object has no attribute '_meta'
That's my first time using userena in Django. i want to override signup form of userena and now have an error.
from userena import settings as userena_settings
from userena.models import UserenaSignup
from userena.utils import…

Ehsan
- 3,711
- 27
- 30
0
votes
2 answers
How can I use django-userena login and logout forms in every page with djangocms?
I have a site running with djangocms and I need the login and logout capabilities of django-userena, it's easy for me to use this because every user will have a profile page too. The design for the menu in every page states that a simple login form…

Dharien Cthaeh
- 67
- 2
- 10
0
votes
1 answer
Userena raising RemovedInDjango19Warning
I'm using userena app in my django project, when running python manage.py migrate, it just raise below warning:
/usr/local/lib/python2.7/dist-packages/userena/utils.py:133:
RemovedInDjango19Warning: django.db.models.get_model is deprecated.
…

Yuwen Yan
- 4,777
- 10
- 33
- 63
0
votes
1 answer
In django template urls are imported correctly but don't work
I am a total noob in Django, so it might seem I may miss something obvious.
I am using django userena app. Following official documentationv I include userena urls like this
from django.conf.urls import patterns, include, url
from django.contrib…

aram_walker
- 107
- 7
0
votes
1 answer
Django Userena Change default messages
i want to change the messages like 'You have been signed out. Till we meet again.'
Is there any way to change it without copying the directory in the project?
I've installed userena with pip.
Thanks!

hanskait
- 45
- 1
- 9
0
votes
1 answer
how to use django-userena to test forgot password link
I am new to django-userena and working on a test case to automate "forgot password" link that gets sent to the email id and don't really know where to start?
I use selenium to automate all of my django tests, however, selenium does not seem to help…
user4297732
0
votes
1 answer
Added an Image Field, getting OperationalError: Column does not exist
I am using Userena, and in my profile class, I added an ImageField, now I get OperationalError, Column does not exist everytime I reach the sign up page on my site.
Here is the code below.
from django.contrib.auth.models import User
from…

stephan
- 2,293
- 4
- 31
- 55
0
votes
1 answer
Is this the proper way to assign a view method to multiple URLS?
I guess I should first of all ask if this is possible, and second am I doing this correctly? I am just trying to make userena_views.signup to a second url (test) and also assign a different template on the second one.
urlpatterns = patterns('',
…

stephan
- 2,293
- 4
- 31
- 55
0
votes
1 answer
Why is my picture not displaying after upload with Django-Userena?
When I go to edit a user profile and upload a new profile pic it does not show up. Instead I see a broken link with the following error.
Page not found (404)
Request Method: GET
Request URL: …

stephan
- 2,293
- 4
- 31
- 55
0
votes
0 answers
OperationalError: No Such Column after adding to models.py
I'm using userena, and I added a single line to add zipcodes to the models.py in my app folder. I now get
OperationalError at /accounts/signup/
no such column: accounts_myprofile.zipcode
Anytime I try to signup. In an effort to try to fix this,…

stephan
- 2,293
- 4
- 31
- 55
0
votes
3 answers
what's wrong with my urls.py in this example?
I just installed userena, and had the example working from the tutorial, but as soon as I added in a single line in URLS.py, I'm getting an error. In the example below, I added the line mapping the home function from views.py
Now the issue I'm…

stephan
- 2,293
- 4
- 31
- 55
0
votes
1 answer
Overriding the check_permissions management command in django-userena to fix permissions for django-oscar
I am trying to use django-userena with django-oscar. So far, it is working well, except for when I try to link a non-staff user to a fulfillment partner (linking to a staff user works fine). Here is the error I am getting:
Traceback:
File…

Shafique Jamal
- 1,550
- 3
- 21
- 45
0
votes
1 answer
django-userena: how to activate account for local development?
I just installed django-userena for my accounts management.
Because I'm still at the stage of basic development and I don't have a public domain name. I'm using gmail for my EMAIL_HOST for testing. The default setting from django-userena is using…

user2988464
- 3,251
- 6
- 21
- 25
0
votes
1 answer
including extra field in django userena profile
I have include a extra field in my myprofile model like this..
import uuid
import base64
from django.db import models
from django.contrib.auth.models import User
from django.utils.translation import ugettext_lazy as _
from django.db.models.signals…

zogo
- 495
- 3
- 10
- 24