Django-users is the user authentication api of Django.
0
votes
1answer
18 views
Extra Context in Django Userena emails
I have my universal template for emails and when django-notification don't have problems with using it django-userena don't have enough variables in context. By default django-notification is adding ...
1
vote
2answers
32 views
Django custom user model and usermanager
i'm building a web application with Django 1.5. I'm using a custom User model with a custom UserManager.
I followed the instructions and examples of the official Django documentation.
Now, when i'm ...
0
votes
0answers
34 views
django 1.5 extend the default User model or substitute it
Env: Django 1.5.1 + Django CMS 2.4.1 + Zinnia latest + my custom apps + custom Django CMS plugin
Basically I can extend the default Django (1.5.X) User model
like Django Ribbit Tutorial on NetTuts+
...
0
votes
2answers
25 views
how do i get the string inside the charfield in django?
I'm trying to create a user in my model by calling the create_user function but I want it to have properties of what the user enters into my model. How do I do this?
This is what I have:
class ...
0
votes
1answer
28 views
Exclude username or password from UserChangeForm in Django Auth
I'm trying to figure out a way on how to exclude the username and/or password from the UserChangeForm. I tried both exclude and fields but I doesn't work for these two fields.
Here's some code:
...
0
votes
0answers
22 views
Django UserAdmin add list_filter in addition to inlines
I"m using Django 1.4
I extened User object with profile and the profile is shown in admin via inlines.
Now I want to create custom filter based on the user profile attribute.
this is the code:
class ...
0
votes
2answers
39 views
Django 1.5 custom user model - signals limitation
It's written in the doc that:
Another limitation of custom User models is that you can’t use django.contrib.auth.get_user_model() as the sender or target of a signal handler. Instead, you must ...
0
votes
2answers
25 views
Extend UserCreationForm for extended User in Django
I extended my django user and need to create a registration form now.
I got most of it figured out but I don't know how to exclude fields I don't need during registration. Right know I see all fields ...
0
votes
1answer
39 views
Django - accidently removed superuser
I am using Django 1.4.5 and accidentally deleted the superuser. How can I recreate the superuser account for an existing project? I found tutorials that show to do it when initially setting up a ...
0
votes
1answer
26 views
Django: How can i get the logged user outside of view request?
I have a class method (outside of a view) who needs the logged user's information. How can i retrieve the logged in user without passing the request to the method? Unfortunately i can't find nowhere a ...
0
votes
1answer
24 views
Django __unicode__ extended Auth_User model
I'm extending a the auth.models.User but I'm having troubles to implement the __unicode__ methode.
from django.db import models
from django.contrib.auth.models import User
class ...
0
votes
2answers
32 views
writing django signal hook to check whether user already exists
We recently switched from one LDAP system to another. Unfortunately, not only the LDAP server changed but all usernames did too.
I managed to configure django_auth_ldap to deal with two LDAP servers, ...
0
votes
0answers
21 views
Django built in User table alter
I want to alter the built-in User table that comes with django activating admin mode.I heard somewhere that it cannot be altered. And someone suggested to not use the user-table.So if I create a user ...
0
votes
2answers
43 views
Django user registration validation not working
Hello i want to develop validation to user registration if user exists and is password matches the password confirmation field. Unfortunately, validation doesn't works. For example, if the 2 passwords ...
0
votes
2answers
45 views
django staff users manage their own users only
In my Django app a user can register to the site and receive staff_user privileges from the admin.
After that the staff user can create and manage some other users (normal users) using default django ...
0
votes
1answer
45 views
Userena set password after activation automatic signin
My users will be able to create users for their clients, which will send an activation email to them.
With userena, the activation link will automatically log them in, even without a password being ...
0
votes
0answers
47 views
Serializing a model which has a foreign key to Django Auth User
How can one serialize a model which has a foreign key to Django auth user so that a username can be retrieved? This is what I have tried through Tastypie:
def dehydrate(self, bundle):
posts = ...
0
votes
1answer
46 views
[django]: How to validate request for new account from mail?
I have simple form for create new user in Django.
Also I want that request (from user) forward to the administrator's email, and just admin can enable that account. User has to wait respond from ...
1
vote
1answer
53 views
How to render a form with a user's data?
How do I create a django form to display a user's sell objects with a radio box next to each obejct for deletion?
I'm trying to create something similar to the django admin where users are listed ...
0
votes
1answer
79 views
Django : Invalid password format or unknown hashing algorithm
I have problem when I want to use simple CreateView for creating new user. Everything is ok, I can create user, but when I want logging with new created user, I cant do it.
I got this type of my ...
-1
votes
1answer
70 views
Django: Web application [closed]
I am new in this kind of programming, and I have to make simple application in django.
This is my task:
The first screen has a login and password which is required inform the login and password and ...
0
votes
1answer
59 views
Configure django UserManager to input date of birth for superuser?
Been messing with django 1.5 by creating my custom user model. In my model, I have a required field dob = DateTimeField(). I've kept pretty much the UserManager and the AbstractUser the same. ...
2
votes
2answers
65 views
Django-Userena email backend
I am trying to set up Django-Userena.
I have added the following line to settings.py file:
EMAIL_BACKEND = 'django.core.mail.backends.dummy.EmailBackend'
Also tried with:
EMAIL_BACKEND = ...
0
votes
1answer
246 views
Django AbstractUser error when login in
I have created an AbstractUser model to add some extra fields to the standard usermodel.
I think everything is set up correctly, but when I log in, I get this error:
unbound method save() must be ...
-1
votes
1answer
63 views
Multi User instances Logging simultaneously from one system using django
I'm new to django and very limited experience in the field so i thought you could help me out.
I am trying to Build a Patient Health Record (PHR) system ,Where there are two types of users Owner and ...
1
vote
1answer
56 views
How would I use django-userena but with no user on the URL
The standard django-userena URL's expect the user name to be on the URL:
/accounts/USER/ # for profile view
/accounts/USER/edit/ # to edit the profile
My user profiles are all going to be closed, ...
0
votes
1answer
49 views
Captured URL parameters in form
I am using Userena and I am trying to capture URL parameters and get them to my form but I'm lost how to do this.
What I would like to do in my template is:
<a ...
0
votes
2answers
63 views
Django User Profile Form Empty
i know their is already a lot of post about that but i tried a lot of solutions and i cannot display my form !
I want to do something really simple (i'm a Django beginner), i create a specific ...
0
votes
1answer
31 views
Django: Accesing User fields from a filter in a ForeignKey
I want to fill a choice field with users who are not staff. I am using an extended user class (with a OneToOneField as mentioned in django docs):
class Usuario(models.Model):
user = ...
0
votes
1answer
47 views
Django Userena Extending
I am trying to implement the concept of "Plans" (free, pro, enterprise, etc.) when a user signs up for my site.
I am beginning Python & Django. I've gotten django-userena installed and working. ...
0
votes
1answer
35 views
How do I link the User model with a Taxonomy model?
How do I link the User model with a Taxonomy model. How do add terms for a specific user and how can I retrieve them?
I'm quite new to Django so you must excuse my lack of knowledge and for not ...
1
vote
1answer
97 views
Django - User creation with custom user model results in internal error
Ok, I know this is a silly question but I am blocked and I can't figure out what to do.
I have searched on google and stackoverflow but did not found any answer :
I tried this :
Adding custom ...
1
vote
1answer
104 views
Set by default is_staff at true in django admin [closed]
I need to set the is_staff value at true when creating a user in admin interface. That's why this option in the admin view will be hidden and I need that the superuser can just create another user ...
0
votes
1answer
67 views
usage of userena profiles in templates
Is there a way to get profile information from a userena profile in a template? Is there some sort of variable automatically passed?
E.g: I can get the django user variable like this:
{% if ...
0
votes
1answer
62 views
django user Authentication error?
i am new to django. i need to create a user log in system and i am following that tutorial user authentication
and i am getting a particular error
Error importing template source loader
...
0
votes
1answer
106 views
Django, Google App Engine, datastore, user login
I am trying to setup a web app in django and deploy on GAE, I already had a setup for GAE,social-auth ( django-social-auth), now I am trying to add userena, to handle the user login; however, it ...
0
votes
2answers
120 views
Google App engine, django, userena, database setup
I am trying to build a web app with GAE, Django. The user registration would be userena. I already use the django-nonrel and all the setup to get the first part working and I am trying to syncdb for ...
0
votes
2answers
67 views
Issues with auth_user table in django
I want to update some fields of auth_user table in django. Actually i am migrating some users from one website to another so i want to update the password field in auth_user table.But when i am using ...
1
vote
2answers
87 views
Django ownership foreign key to User or UserExtenstion
I'm quite new with Django, and so far I have a pretty basic setup where I attach an extra model to the default User model from (django.contrib.auth.models). In my accounts.models.py I have something ...
3
votes
2answers
110 views
Migrating existing models to Django built-in User Models
I am running a Django 1.4.2 project. I have a database of class User(models.Model), and would now like to change this so that I used the built in model User from django.contrib.auth.models. Can I ...
0
votes
1answer
104 views
Django: extending User model avoiding DB join
In my Django app, I need to create a User Model with some extra fields. For DB performance, I would like to avoid to make a join everytime I want to access those fields. At DB level I would like to ...
1
vote
1answer
139 views
Getting user logged in with django-social-auth
I set up a unit test as such:
class UserViewTests(TestCase):
def setUp(self):
self.user_passwords = '123456'
self.user1 = User.objects.create(username='Bobby Johnson', ...
1
vote
1answer
122 views
IntegrityError -userprofile.u_id may not be NULL, django user registration
I am trying to register users using the Django UserProfile capability. I have an Extended UserProfile model. My files look like below. I am getting "accounts_userprofile.u_id may not be NULL', i tried ...
0
votes
0answers
60 views
Django: Understanding issue with rights management
I would like to give all users the possibility to create - for example - some notes in userdefined folders. This notes should only be readable by the creator itself.
How is something like that ...
5
votes
6answers
1k views
Django 1.5 custom User model error. “Manager isn't available; User has been swapped”
I extend the django user model as described in the dev doc. I wan't to keep most of the original User model features so I extend the AbstractUser class. I've defined in settings.py:
AUTH_USER_MODEL = ...
1
vote
2answers
40 views
Extending the django User
this is my first question on stackoverflow. I am a beginner programmer and kind of have issues with programming logic.
My issue is that I have a model(which happens to be a form) which collects ...
0
votes
1answer
286 views
IntegrityError : column user_id is not unique
I'm creating Django User registration form. But I can't figure out why Django returns this error when I submit the registration info.
IntegrityError : column user_id is not unique
and in detail, ...
1
vote
0answers
159 views
Create post-forms such as craigslist on my Django powered website
I'm creating a marketplace website such as Craigslist. I'd like to make "post-forms" for users to post their own product information (by uploading photos, adding forms (name, price,condition,,etc.)) ...
1
vote
1answer
132 views
How to setup django with unique settings.py per SITE_ID
I have been researching the various (and there are many) ways to have multiple sites under a single Django framework.
I still don't see a solution that fits well for my use case. The use case being:
...
1
vote
2answers
101 views
Django: error with “username” in my custom user model - 'UserProfile' object has no attribute 'username'
I'm new with Django and I'm having some problems creating a custom user model. I followed every steps from the django documentation. Here is my model :
class UserProfile(models.Model):
user = ...



