معرفی شرکت ها


django-superuser-0.2.3


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

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

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

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

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

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

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

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

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

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

مشاهده بیشتر

توضیحات

Middleware that gives you super powers.
ویژگی مقدار
سیستم عامل -
نام فایل django-superuser-0.2.3
نام django-superuser
نسخه کتابخانه 0.2.3
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Mikko Hellsing
ایمیل نویسنده mikko@sumusm.se
آدرس صفحه اصلی http://github.com/sorl/django-superuser
آدرس اینترنتی https://pypi.org/project/django-superuser/
مجوز ICS
django-superuser ================ At some point in development you wish you were just automatically logged into the django admin as a super user. This middleware lets you do just that. As you probably understand this also poses a security risk. To minimize the chances of this middleware automatically logging someone in as a super user in a production environment you will need to take some extra steps when installing. Installation ------------ First you need enter the middleware in your setting file, it needs to be at some line after the ``django.contrib.auth.middleware.AuthenticationMiddleware``:: MIDDLEWARE = ( ... 'django.contrib.auth.middleware.AuthenticationMiddleware', 'superuser.middleware.SuperUserMiddleware', ... ) You also need to have your IP listed in ``INTERNAL_IPS``, for example:: INTERNAL_IPS = ('127.0.0.1',) Lastly you need to make sure ``DEBUG = True`` in your settings file for the middleware to work. Notes ----- Note that the login page (usually ``/admin/login/``) does not log you in automatically as a super user, this is so that you can login as a different user if you like. If you want to be logged in as a super user, just navigate to any other admin view, for example ``/admin/``. Django version < 1.10 --------------------- If you are using Django version < 1.10 you need to use the old style middleware classes and you need install django-supervisor version < 0.2.0. Please set up middleware like this instead after the line: ``django.contrib.auth.middleware.AuthenticationMiddleware``:: MIDDLEWARE_CLASSES = ( ... 'django.contrib.auth.middleware.AuthenticationMiddleware', 'superuser.middleware.SuperUserMiddleware', ... )


نحوه نصب


نصب پکیج whl django-superuser-0.2.3:

    pip install django-superuser-0.2.3.whl


نصب پکیج tar.gz django-superuser-0.2.3:

    pip install django-superuser-0.2.3.tar.gz