معرفی شرکت ها


django-username-email-fullname-2.0.3


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Custom Django User model that makes email the USERNAME_FIELD.
ویژگی مقدار
سیستم عامل -
نام فایل django-username-email-fullname-2.0.3
نام django-username-email-fullname
نسخه کتابخانه 2.0.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Chris Franklin
ایمیل نویسنده chris@hairy.io
آدرس صفحه اصلی https://github.com/hairychris/django-username-email-fullname/
آدرس اینترنتی https://pypi.org/project/django-username-email-fullname/
مجوز MIT
CUser, make email the USERNAME\_FIELD ===================================== CUser makes it easy to use email address as your identification token instead of a username. CUser is a custom Django user model (extends ``AbstractBaseUser``) so it takes a tiny amount of effort to use. The only difference between CUser and the vanilla Django ``User`` is email address is the ``USERNAME_FIELD`` (and username does not exist). CUser supports Django 1.8+ Why use CUser? -------------- Because you want everything in ``django.contrib.auth`` except for the ``username`` field and you also want users to **log in with email addresses**. And you don't want to create your own custom user model or authentication backend. Install & Set up ---------------- 0. If you previously used Django's default user model, ``django.contrib.auth.models.User``, jump to **Notes** first (then come back). Otherwise, continue onward! 1. Install with ``pip install django-username-email-fullname`` 2. Add ``cuser`` to your ``INSTALLED_APPS`` setting: .. code-block:: python INSTALLED_APPS = [ ... 'cuser', ] 3. Specify the custom model as the default user model for your project using the ``AUTH_USER_MODEL`` setting in your settings.py: .. code-block:: python AUTH_USER_MODEL = 'cuser.CUser' 4. Instead of referring to User directly, you should reference the user model using ``django.contrib.auth.get_user_model()`` 5. If you use Django's default ``AuthenticationForm`` class, it is strongly recommended that you replace it with the one included with CUser. This will make the ``<input>`` have its ``type`` attribute set to ``email`` and browsers' autocomplete feature will suggest email addresses instead of usernames. For example, if your project is using Django's default ``login`` view, this is what you would put in your urls.py in order to make use of CUser's ``AuthenticationForm`` class: .. code-block:: python from cuser.forms import AuthenticationForm from django.conf.urls import include, url from django.contrib.auth.views import login urlpatterns = [ url(r'^accounts/login/$', login, {'authentication_form': AuthenticationForm}, name='login'), url(r'^accounts/', include('django.contrib.auth.urls')), ... ] 6. Run migrations. .. code-block:: shell python manage.py migrate Configuration ------------- To override any of the default settings, create a dictionary named ``CUSER`` in your settings.py with each setting you want to override. For example: .. code-block:: python CUSER = { 'app_verbose_name': 'Authentication and Authorization', 'register_proxy_auth_group_model': True, } These are the settings: ``app_verbose_name`` (default: ``_("Custom User")``) **************************************************** This controls the value that CUser will use for its ``AppConfig`` class' ``verbose_name``. ``register_proxy_auth_group_model`` (default: ``False``) ******************************************************** When set to ``True``, CUser's admin.py will unregister Django's default ``Group`` model and register its own proxy model of Django's default ``Group`` model (also named ``Group``). This is useful if you want Django's default ``Group`` model to appear in the same part of the admin as CUser's ``CUser`` model. Notes ----- If you have tables referencing Django's ``User`` model, you will have to delete those table and migrations, then re-migrate. This will ensure everything is set up correctly from the beginning. When you define a foreign key or many-to-many relations to the ``User`` model, you should specify the custom model using the ``AUTH_USER_MODEL`` setting. For example: .. code-block:: python from django.conf import settings from django.db import models class Profile(models.Model): user = models.ForeignKey( settings.AUTH_USER_MODEL, on_delete=models.CASCADE, ) License ------- Released under the MIT license. See LICENSE for details. Questions, comments, or anything else? -------------------------------------- - Open an issue - `Twitter <https://twitter.com/tomfme>`__ - tom@meagher.co


نحوه نصب


نصب پکیج whl django-username-email-fullname-2.0.3:

    pip install django-username-email-fullname-2.0.3.whl


نصب پکیج tar.gz django-username-email-fullname-2.0.3:

    pip install django-username-email-fullname-2.0.3.tar.gz