User model is the default model in Django.
What's the best way to extend the User model (bundled with Django's authentication app) with custom fields? I would also …
django django-models django-authentication django-usersI have made a custom profile model which looks like this: from django.db import models from django.contrib.auth.…
python django django-usersI want that each user in my website will have an image in his profile. I don't need any thumbnails …
django avatar django-usersHow do you get your template/view to recognize whether or not a logged in user is a super user …
django django-models django-forms django-templates django-usersPossible Duplicate: get request data in Django form There's part of my Guest Model: class Guest(models.Model): event = models.…
django-forms django-usersI have the following method: def _attempt(actor): if actor.__class__ != User: raise TypeError Which is called from a view: …
python django django-users django-contribThis may sounds a stupid question but I have difficulty deleting users in django using this view: @staff_member_required …
python django django-usersI have some question In a project I have the need of work with users which are of three (may …
python django django-users user-roles multiple-usersI have a custom user model and I am using django-rest-framework to create API models.py: class User(AbstractBaseUser, PermissionsMixin): …
django django-rest-framework django-usersI just want to add the subscription date in the User list in the Django CRUD Administration site. How can …
python django django-admin django-users