default.txt 64 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685
  1. ======================================
  2. Using the Django authentication system
  3. ======================================
  4. .. currentmodule:: django.contrib.auth
  5. This document explains the usage of Django's authentication system in its
  6. default configuration. This configuration has evolved to serve the most common
  7. project needs, handling a reasonably wide range of tasks, and has a careful
  8. implementation of passwords and permissions. For projects where authentication
  9. needs differ from the default, Django supports extensive :doc:`extension and
  10. customization </topics/auth/customizing>` of authentication.
  11. Django authentication provides both authentication and authorization together
  12. and is generally referred to as the authentication system, as these features
  13. are somewhat coupled.
  14. .. _user-objects:
  15. ``User`` objects
  16. ================
  17. :class:`~django.contrib.auth.models.User` objects are the core of the
  18. authentication system. They typically represent the people interacting with
  19. your site and are used to enable things like restricting access, registering
  20. user profiles, associating content with creators etc. Only one class of user
  21. exists in Django's authentication framework, i.e., :attr:`'superusers'
  22. <django.contrib.auth.models.User.is_superuser>` or admin :attr:`'staff'
  23. <django.contrib.auth.models.User.is_staff>` users are just user objects with
  24. special attributes set, not different classes of user objects.
  25. The primary attributes of the default user are:
  26. * :attr:`~django.contrib.auth.models.User.username`
  27. * :attr:`~django.contrib.auth.models.User.password`
  28. * :attr:`~django.contrib.auth.models.User.email`
  29. * :attr:`~django.contrib.auth.models.User.first_name`
  30. * :attr:`~django.contrib.auth.models.User.last_name`
  31. See the :class:`full API documentation <django.contrib.auth.models.User>` for
  32. full reference, the documentation that follows is more task oriented.
  33. .. _topics-auth-creating-users:
  34. Creating users
  35. --------------
  36. The most direct way to create users is to use the included
  37. :meth:`~django.contrib.auth.models.UserManager.create_user` helper function::
  38. >>> from django.contrib.auth.models import User
  39. >>> user = User.objects.create_user('john', 'lennon@thebeatles.com', 'johnpassword')
  40. # At this point, user is a User object that has already been saved
  41. # to the database. You can continue to change its attributes
  42. # if you want to change other fields.
  43. >>> user.last_name = 'Lennon'
  44. >>> user.save()
  45. If you have the Django admin installed, you can also :ref:`create users
  46. interactively <auth-admin>`.
  47. .. _topics-auth-creating-superusers:
  48. Creating superusers
  49. -------------------
  50. Create superusers using the :djadmin:`createsuperuser` command::
  51. $ python manage.py createsuperuser --username=joe --email=joe@example.com
  52. You will be prompted for a password. After you enter one, the user will be
  53. created immediately. If you leave off the :option:`--username <createsuperuser
  54. --username>` or :option:`--email <createsuperuser --email>` options, it will
  55. prompt you for those values.
  56. Changing passwords
  57. ------------------
  58. Django does not store raw (clear text) passwords on the user model, but only
  59. a hash (see :doc:`documentation of how passwords are managed
  60. </topics/auth/passwords>` for full details). Because of this, do not attempt to
  61. manipulate the password attribute of the user directly. This is why a helper
  62. function is used when creating a user.
  63. To change a user's password, you have several options:
  64. :djadmin:`manage.py changepassword *username* <changepassword>` offers a method
  65. of changing a user's password from the command line. It prompts you to
  66. change the password of a given user which you must enter twice. If
  67. they both match, the new password will be changed immediately. If you
  68. do not supply a user, the command will attempt to change the password
  69. whose username matches the current system user.
  70. You can also change a password programmatically, using
  71. :meth:`~django.contrib.auth.models.User.set_password()`:
  72. .. code-block:: pycon
  73. >>> from django.contrib.auth.models import User
  74. >>> u = User.objects.get(username='john')
  75. >>> u.set_password('new password')
  76. >>> u.save()
  77. If you have the Django admin installed, you can also change user's passwords
  78. on the :ref:`authentication system's admin pages <auth-admin>`.
  79. Django also provides :ref:`views <built-in-auth-views>` and :ref:`forms
  80. <built-in-auth-forms>` that may be used to allow users to change their own
  81. passwords.
  82. Changing a user's password will log out all their sessions. See
  83. :ref:`session-invalidation-on-password-change` for details.
  84. Authenticating users
  85. --------------------
  86. .. function:: authenticate(request=None, **credentials)
  87. Use :func:`~django.contrib.auth.authenticate()` to verify a set of
  88. credentials. It takes credentials as keyword arguments, ``username`` and
  89. ``password`` for the default case, checks them against each
  90. :ref:`authentication backend <authentication-backends>`, and returns a
  91. :class:`~django.contrib.auth.models.User` object if the credentials are
  92. valid for a backend. If the credentials aren't valid for any backend or if
  93. a backend raises :class:`~django.core.exceptions.PermissionDenied`, it
  94. returns ``None``. For example::
  95. from django.contrib.auth import authenticate
  96. user = authenticate(username='john', password='secret')
  97. if user is not None:
  98. # A backend authenticated the credentials
  99. else:
  100. # No backend authenticated the credentials
  101. ``request`` is an optional :class:`~django.http.HttpRequest` which is
  102. passed on the ``authenticate()`` method of the authentication backends.
  103. .. note::
  104. This is a low level way to authenticate a set of credentials; for
  105. example, it's used by the
  106. :class:`~django.contrib.auth.middleware.RemoteUserMiddleware`. Unless
  107. you are writing your own authentication system, you probably won't use
  108. this. Rather if you're looking for a way to login a user, use the
  109. :class:`~django.contrib.auth.views.LoginView`.
  110. .. _topic-authorization:
  111. Permissions and Authorization
  112. =============================
  113. Django comes with a built-in permissions system. It provides a way to assign
  114. permissions to specific users and groups of users.
  115. It's used by the Django admin site, but you're welcome to use it in your own
  116. code.
  117. The Django admin site uses permissions as follows:
  118. * Access to view objects is limited to users with the "view" or "change"
  119. permission for that type of object.
  120. * Access to view the "add" form and add an object is limited to users with
  121. the "add" permission for that type of object.
  122. * Access to view the change list, view the "change" form and change an
  123. object is limited to users with the "change" permission for that type of
  124. object.
  125. * Access to delete an object is limited to users with the "delete"
  126. permission for that type of object.
  127. Permissions can be set not only per type of object, but also per specific
  128. object instance. By using the
  129. :meth:`~django.contrib.admin.ModelAdmin.has_view_permission`,
  130. :meth:`~django.contrib.admin.ModelAdmin.has_add_permission`,
  131. :meth:`~django.contrib.admin.ModelAdmin.has_change_permission` and
  132. :meth:`~django.contrib.admin.ModelAdmin.has_delete_permission` methods provided
  133. by the :class:`~django.contrib.admin.ModelAdmin` class, it is possible to
  134. customize permissions for different object instances of the same type.
  135. :class:`~django.contrib.auth.models.User` objects have two many-to-many
  136. fields: ``groups`` and ``user_permissions``.
  137. :class:`~django.contrib.auth.models.User` objects can access their related
  138. objects in the same way as any other :doc:`Django model
  139. </topics/db/models>`::
  140. myuser.groups.set([group_list])
  141. myuser.groups.add(group, group, ...)
  142. myuser.groups.remove(group, group, ...)
  143. myuser.groups.clear()
  144. myuser.user_permissions.set([permission_list])
  145. myuser.user_permissions.add(permission, permission, ...)
  146. myuser.user_permissions.remove(permission, permission, ...)
  147. myuser.user_permissions.clear()
  148. Default permissions
  149. -------------------
  150. When ``django.contrib.auth`` is listed in your :setting:`INSTALLED_APPS`
  151. setting, it will ensure that four default permissions -- add, change, delete,
  152. and view -- are created for each Django model defined in one of your installed
  153. applications.
  154. These permissions will be created when you run :djadmin:`manage.py migrate
  155. <migrate>`; the first time you run ``migrate`` after adding
  156. ``django.contrib.auth`` to :setting:`INSTALLED_APPS`, the default permissions
  157. will be created for all previously-installed models, as well as for any new
  158. models being installed at that time. Afterward, it will create default
  159. permissions for new models each time you run :djadmin:`manage.py migrate
  160. <migrate>` (the function that creates permissions is connected to the
  161. :data:`~django.db.models.signals.post_migrate` signal).
  162. Assuming you have an application with an
  163. :attr:`~django.db.models.Options.app_label` ``foo`` and a model named ``Bar``,
  164. to test for basic permissions you should use:
  165. * add: ``user.has_perm('foo.add_bar')``
  166. * change: ``user.has_perm('foo.change_bar')``
  167. * delete: ``user.has_perm('foo.delete_bar')``
  168. * view: ``user.has_perm('foo.view_bar')``
  169. The :class:`~django.contrib.auth.models.Permission` model is rarely accessed
  170. directly.
  171. Groups
  172. ------
  173. :class:`django.contrib.auth.models.Group` models are a generic way of
  174. categorizing users so you can apply permissions, or some other label, to those
  175. users. A user can belong to any number of groups.
  176. A user in a group automatically has the permissions granted to that group. For
  177. example, if the group ``Site editors`` has the permission
  178. ``can_edit_home_page``, any user in that group will have that permission.
  179. Beyond permissions, groups are a convenient way to categorize users to give
  180. them some label, or extended functionality. For example, you could create a
  181. group ``'Special users'``, and you could write code that could, say, give them
  182. access to a members-only portion of your site, or send them members-only email
  183. messages.
  184. Programmatically creating permissions
  185. -------------------------------------
  186. While :ref:`custom permissions <custom-permissions>` can be defined within
  187. a model's ``Meta`` class, you can also create permissions directly. For
  188. example, you can create the ``can_publish`` permission for a ``BlogPost`` model
  189. in ``myapp``::
  190. from myapp.models import BlogPost
  191. from django.contrib.auth.models import Permission
  192. from django.contrib.contenttypes.models import ContentType
  193. content_type = ContentType.objects.get_for_model(BlogPost)
  194. permission = Permission.objects.create(
  195. codename='can_publish',
  196. name='Can Publish Posts',
  197. content_type=content_type,
  198. )
  199. The permission can then be assigned to a
  200. :class:`~django.contrib.auth.models.User` via its ``user_permissions``
  201. attribute or to a :class:`~django.contrib.auth.models.Group` via its
  202. ``permissions`` attribute.
  203. .. admonition:: Proxy models need their own content type
  204. If you want to create :ref:`permissions for a proxy model
  205. <proxy-models-permissions-topic>`, pass ``for_concrete_model=False`` to
  206. :meth:`.ContentTypeManager.get_for_model` to get the appropriate
  207. ``ContentType``::
  208. content_type = ContentType.objects.get_for_model(BlogPostProxy, for_concrete_model=False)
  209. Permission caching
  210. ------------------
  211. The :class:`~django.contrib.auth.backends.ModelBackend` caches permissions on
  212. the user object after the first time they need to be fetched for a permissions
  213. check. This is typically fine for the request-response cycle since permissions
  214. aren't typically checked immediately after they are added (in the admin, for
  215. example). If you are adding permissions and checking them immediately
  216. afterward, in a test or view for example, the easiest solution is to re-fetch
  217. the user from the database. For example::
  218. from django.contrib.auth.models import Permission, User
  219. from django.contrib.contenttypes.models import ContentType
  220. from django.shortcuts import get_object_or_404
  221. from myapp.models import BlogPost
  222. def user_gains_perms(request, user_id):
  223. user = get_object_or_404(User, pk=user_id)
  224. # any permission check will cache the current set of permissions
  225. user.has_perm('myapp.change_blogpost')
  226. content_type = ContentType.objects.get_for_model(BlogPost)
  227. permission = Permission.objects.get(
  228. codename='change_blogpost',
  229. content_type=content_type,
  230. )
  231. user.user_permissions.add(permission)
  232. # Checking the cached permission set
  233. user.has_perm('myapp.change_blogpost') # False
  234. # Request new instance of User
  235. # Be aware that user.refresh_from_db() won't clear the cache.
  236. user = get_object_or_404(User, pk=user_id)
  237. # Permission cache is repopulated from the database
  238. user.has_perm('myapp.change_blogpost') # True
  239. ...
  240. .. _proxy-models-permissions-topic:
  241. Proxy models
  242. ------------
  243. Proxy models work exactly the same way as concrete models. Permissions are
  244. created using the own content type of the proxy model. Proxy models don't
  245. inherit the permissions of the concrete model they subclass::
  246. class Person(models.Model):
  247. class Meta:
  248. permissions = [('can_eat_pizzas', 'Can eat pizzas')]
  249. class Student(Person):
  250. class Meta:
  251. proxy = True
  252. permissions = [('can_deliver_pizzas', 'Can deliver pizzas')]
  253. >>> # Fetch the content type for the proxy model.
  254. >>> content_type = ContentType.objects.get_for_model(Student, for_concrete_model=False)
  255. >>> student_permissions = Permission.objects.filter(content_type=content_type)
  256. >>> [p.codename for p in student_permissions]
  257. ['add_student', 'change_student', 'delete_student', 'view_student',
  258. 'can_deliver_pizzas']
  259. >>> for permission in student_permissions:
  260. ... user.user_permissions.add(permission)
  261. >>> user.has_perm('app.add_person')
  262. False
  263. >>> user.has_perm('app.can_eat_pizzas')
  264. False
  265. >>> user.has_perms(('app.add_student', 'app.can_deliver_pizzas'))
  266. True
  267. .. _auth-web-requests:
  268. Authentication in Web requests
  269. ==============================
  270. Django uses :doc:`sessions </topics/http/sessions>` and middleware to hook the
  271. authentication system into :class:`request objects <django.http.HttpRequest>`.
  272. These provide a :attr:`request.user <django.http.HttpRequest.user>` attribute
  273. on every request which represents the current user. If the current user has not
  274. logged in, this attribute will be set to an instance
  275. of :class:`~django.contrib.auth.models.AnonymousUser`, otherwise it will be an
  276. instance of :class:`~django.contrib.auth.models.User`.
  277. You can tell them apart with
  278. :attr:`~django.contrib.auth.models.User.is_authenticated`, like so::
  279. if request.user.is_authenticated:
  280. # Do something for authenticated users.
  281. ...
  282. else:
  283. # Do something for anonymous users.
  284. ...
  285. .. _how-to-log-a-user-in:
  286. How to log a user in
  287. --------------------
  288. If you have an authenticated user you want to attach to the current session
  289. - this is done with a :func:`~django.contrib.auth.login` function.
  290. .. function:: login(request, user, backend=None)
  291. To log a user in, from a view, use :func:`~django.contrib.auth.login()`. It
  292. takes an :class:`~django.http.HttpRequest` object and a
  293. :class:`~django.contrib.auth.models.User` object.
  294. :func:`~django.contrib.auth.login()` saves the user's ID in the session,
  295. using Django's session framework.
  296. Note that any data set during the anonymous session is retained in the
  297. session after a user logs in.
  298. This example shows how you might use both
  299. :func:`~django.contrib.auth.authenticate()` and
  300. :func:`~django.contrib.auth.login()`::
  301. from django.contrib.auth import authenticate, login
  302. def my_view(request):
  303. username = request.POST['username']
  304. password = request.POST['password']
  305. user = authenticate(request, username=username, password=password)
  306. if user is not None:
  307. login(request, user)
  308. # Redirect to a success page.
  309. ...
  310. else:
  311. # Return an 'invalid login' error message.
  312. ...
  313. Selecting the authentication backend
  314. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  315. When a user logs in, the user's ID and the backend that was used for
  316. authentication are saved in the user's session. This allows the same
  317. :ref:`authentication backend <authentication-backends>` to fetch the user's
  318. details on a future request. The authentication backend to save in the session
  319. is selected as follows:
  320. #. Use the value of the optional ``backend`` argument, if provided.
  321. #. Use the value of the ``user.backend`` attribute, if present. This allows
  322. pairing :func:`~django.contrib.auth.authenticate()` and
  323. :func:`~django.contrib.auth.login()`:
  324. :func:`~django.contrib.auth.authenticate()`
  325. sets the ``user.backend`` attribute on the user object it returns.
  326. #. Use the ``backend`` in :setting:`AUTHENTICATION_BACKENDS`, if there is only
  327. one.
  328. #. Otherwise, raise an exception.
  329. In cases 1 and 2, the value of the ``backend`` argument or the ``user.backend``
  330. attribute should be a dotted import path string (like that found in
  331. :setting:`AUTHENTICATION_BACKENDS`), not the actual backend class.
  332. How to log a user out
  333. ---------------------
  334. .. function:: logout(request)
  335. To log out a user who has been logged in via
  336. :func:`django.contrib.auth.login()`, use
  337. :func:`django.contrib.auth.logout()` within your view. It takes an
  338. :class:`~django.http.HttpRequest` object and has no return value.
  339. Example::
  340. from django.contrib.auth import logout
  341. def logout_view(request):
  342. logout(request)
  343. # Redirect to a success page.
  344. Note that :func:`~django.contrib.auth.logout()` doesn't throw any errors if
  345. the user wasn't logged in.
  346. When you call :func:`~django.contrib.auth.logout()`, the session data for
  347. the current request is completely cleaned out. All existing data is
  348. removed. This is to prevent another person from using the same Web browser
  349. to log in and have access to the previous user's session data. If you want
  350. to put anything into the session that will be available to the user
  351. immediately after logging out, do that *after* calling
  352. :func:`django.contrib.auth.logout()`.
  353. Limiting access to logged-in users
  354. ----------------------------------
  355. The raw way
  356. ~~~~~~~~~~~
  357. The raw way to limit access to pages is to check
  358. :attr:`request.user.is_authenticated
  359. <django.contrib.auth.models.User.is_authenticated>` and either redirect to a
  360. login page::
  361. from django.conf import settings
  362. from django.shortcuts import redirect
  363. def my_view(request):
  364. if not request.user.is_authenticated:
  365. return redirect('%s?next=%s' % (settings.LOGIN_URL, request.path))
  366. # ...
  367. ...or display an error message::
  368. from django.shortcuts import render
  369. def my_view(request):
  370. if not request.user.is_authenticated:
  371. return render(request, 'myapp/login_error.html')
  372. # ...
  373. .. currentmodule:: django.contrib.auth.decorators
  374. The ``login_required`` decorator
  375. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  376. .. function:: login_required(redirect_field_name='next', login_url=None)
  377. As a shortcut, you can use the convenient
  378. :func:`~django.contrib.auth.decorators.login_required` decorator::
  379. from django.contrib.auth.decorators import login_required
  380. @login_required
  381. def my_view(request):
  382. ...
  383. :func:`~django.contrib.auth.decorators.login_required` does the following:
  384. * If the user isn't logged in, redirect to
  385. :setting:`settings.LOGIN_URL <LOGIN_URL>`, passing the current absolute
  386. path in the query string. Example: ``/accounts/login/?next=/polls/3/``.
  387. * If the user is logged in, execute the view normally. The view code is
  388. free to assume the user is logged in.
  389. By default, the path that the user should be redirected to upon
  390. successful authentication is stored in a query string parameter called
  391. ``"next"``. If you would prefer to use a different name for this parameter,
  392. :func:`~django.contrib.auth.decorators.login_required` takes an
  393. optional ``redirect_field_name`` parameter::
  394. from django.contrib.auth.decorators import login_required
  395. @login_required(redirect_field_name='my_redirect_field')
  396. def my_view(request):
  397. ...
  398. Note that if you provide a value to ``redirect_field_name``, you will most
  399. likely need to customize your login template as well, since the template
  400. context variable which stores the redirect path will use the value of
  401. ``redirect_field_name`` as its key rather than ``"next"`` (the default).
  402. :func:`~django.contrib.auth.decorators.login_required` also takes an
  403. optional ``login_url`` parameter. Example::
  404. from django.contrib.auth.decorators import login_required
  405. @login_required(login_url='/accounts/login/')
  406. def my_view(request):
  407. ...
  408. Note that if you don't specify the ``login_url`` parameter, you'll need to
  409. ensure that the :setting:`settings.LOGIN_URL <LOGIN_URL>` and your login
  410. view are properly associated. For example, using the defaults, add the
  411. following lines to your URLconf::
  412. from django.contrib.auth import views as auth_views
  413. path('accounts/login/', auth_views.LoginView.as_view()),
  414. The :setting:`settings.LOGIN_URL <LOGIN_URL>` also accepts view function
  415. names and :ref:`named URL patterns <naming-url-patterns>`. This allows you
  416. to freely remap your login view within your URLconf without having to
  417. update the setting.
  418. .. note::
  419. The ``login_required`` decorator does NOT check the ``is_active`` flag on a
  420. user, but the default :setting:`AUTHENTICATION_BACKENDS` reject inactive
  421. users.
  422. .. seealso::
  423. If you are writing custom views for Django's admin (or need the same
  424. authorization check that the built-in views use), you may find the
  425. :func:`django.contrib.admin.views.decorators.staff_member_required`
  426. decorator a useful alternative to ``login_required()``.
  427. .. currentmodule:: django.contrib.auth.mixins
  428. The ``LoginRequired`` mixin
  429. ~~~~~~~~~~~~~~~~~~~~~~~~~~~
  430. When using :doc:`class-based views </topics/class-based-views/index>`, you can
  431. achieve the same behavior as with ``login_required`` by using the
  432. ``LoginRequiredMixin``. This mixin should be at the leftmost position in the
  433. inheritance list.
  434. .. class:: LoginRequiredMixin
  435. If a view is using this mixin, all requests by non-authenticated users will
  436. be redirected to the login page or shown an HTTP 403 Forbidden error,
  437. depending on the
  438. :attr:`~django.contrib.auth.mixins.AccessMixin.raise_exception` parameter.
  439. You can set any of the parameters of
  440. :class:`~django.contrib.auth.mixins.AccessMixin` to customize the handling
  441. of unauthorized users::
  442. from django.contrib.auth.mixins import LoginRequiredMixin
  443. class MyView(LoginRequiredMixin, View):
  444. login_url = '/login/'
  445. redirect_field_name = 'redirect_to'
  446. .. note::
  447. Just as the ``login_required`` decorator, this mixin does NOT check the
  448. ``is_active`` flag on a user, but the default
  449. :setting:`AUTHENTICATION_BACKENDS` reject inactive users.
  450. .. currentmodule:: django.contrib.auth.decorators
  451. Limiting access to logged-in users that pass a test
  452. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  453. To limit access based on certain permissions or some other test, you'd do
  454. essentially the same thing as described in the previous section.
  455. You can run your test on :attr:`request.user <django.http.HttpRequest.user>` in
  456. the view directly. For example, this view checks to make sure the user has an
  457. email in the desired domain and if not, redirects to the login page::
  458. from django.shortcuts import redirect
  459. def my_view(request):
  460. if not request.user.email.endswith('@example.com'):
  461. return redirect('/login/?next=%s' % request.path)
  462. # ...
  463. .. function:: user_passes_test(test_func, login_url=None, redirect_field_name='next')
  464. As a shortcut, you can use the convenient ``user_passes_test`` decorator
  465. which performs a redirect when the callable returns ``False``::
  466. from django.contrib.auth.decorators import user_passes_test
  467. def email_check(user):
  468. return user.email.endswith('@example.com')
  469. @user_passes_test(email_check)
  470. def my_view(request):
  471. ...
  472. :func:`~django.contrib.auth.decorators.user_passes_test` takes a required
  473. argument: a callable that takes a
  474. :class:`~django.contrib.auth.models.User` object and returns ``True`` if
  475. the user is allowed to view the page. Note that
  476. :func:`~django.contrib.auth.decorators.user_passes_test` does not
  477. automatically check that the :class:`~django.contrib.auth.models.User` is
  478. not anonymous.
  479. :func:`~django.contrib.auth.decorators.user_passes_test` takes two
  480. optional arguments:
  481. ``login_url``
  482. Lets you specify the URL that users who don't pass the test will be
  483. redirected to. It may be a login page and defaults to
  484. :setting:`settings.LOGIN_URL <LOGIN_URL>` if you don't specify one.
  485. ``redirect_field_name``
  486. Same as for :func:`~django.contrib.auth.decorators.login_required`.
  487. Setting it to ``None`` removes it from the URL, which you may want to do
  488. if you are redirecting users that don't pass the test to a non-login
  489. page where there's no "next page".
  490. For example::
  491. @user_passes_test(email_check, login_url='/login/')
  492. def my_view(request):
  493. ...
  494. .. currentmodule:: django.contrib.auth.mixins
  495. .. class:: UserPassesTestMixin
  496. When using :doc:`class-based views </topics/class-based-views/index>`, you
  497. can use the ``UserPassesTestMixin`` to do this.
  498. .. method:: test_func()
  499. You have to override the ``test_func()`` method of the class to
  500. provide the test that is performed. Furthermore, you can set any of the
  501. parameters of :class:`~django.contrib.auth.mixins.AccessMixin` to
  502. customize the handling of unauthorized users::
  503. from django.contrib.auth.mixins import UserPassesTestMixin
  504. class MyView(UserPassesTestMixin, View):
  505. def test_func(self):
  506. return self.request.user.email.endswith('@example.com')
  507. .. method:: get_test_func()
  508. You can also override the ``get_test_func()`` method to have the mixin
  509. use a differently named function for its checks (instead of
  510. :meth:`test_func`).
  511. .. admonition:: Stacking ``UserPassesTestMixin``
  512. Due to the way ``UserPassesTestMixin`` is implemented, you cannot stack
  513. them in your inheritance list. The following does NOT work::
  514. class TestMixin1(UserPassesTestMixin):
  515. def test_func(self):
  516. return self.request.user.email.endswith('@example.com')
  517. class TestMixin2(UserPassesTestMixin):
  518. def test_func(self):
  519. return self.request.user.username.startswith('django')
  520. class MyView(TestMixin1, TestMixin2, View):
  521. ...
  522. If ``TestMixin1`` would call ``super()`` and take that result into
  523. account, ``TestMixin1`` wouldn't work standalone anymore.
  524. .. currentmodule:: django.contrib.auth.decorators
  525. The ``permission_required`` decorator
  526. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  527. .. function:: permission_required(perm, login_url=None, raise_exception=False)
  528. It's a relatively common task to check whether a user has a particular
  529. permission. For that reason, Django provides a shortcut for that case: the
  530. :func:`~django.contrib.auth.decorators.permission_required()` decorator.::
  531. from django.contrib.auth.decorators import permission_required
  532. @permission_required('polls.add_choice')
  533. def my_view(request):
  534. ...
  535. Just like the :meth:`~django.contrib.auth.models.User.has_perm` method,
  536. permission names take the form ``"<app label>.<permission codename>"``
  537. (i.e. ``polls.add_choice`` for a permission on a model in the ``polls``
  538. application).
  539. The decorator may also take an iterable of permissions, in which case the
  540. user must have all of the permissions in order to access the view.
  541. Note that :func:`~django.contrib.auth.decorators.permission_required()`
  542. also takes an optional ``login_url`` parameter::
  543. from django.contrib.auth.decorators import permission_required
  544. @permission_required('polls.add_choice', login_url='/loginpage/')
  545. def my_view(request):
  546. ...
  547. As in the :func:`~django.contrib.auth.decorators.login_required` decorator,
  548. ``login_url`` defaults to :setting:`settings.LOGIN_URL <LOGIN_URL>`.
  549. If the ``raise_exception`` parameter is given, the decorator will raise
  550. :exc:`~django.core.exceptions.PermissionDenied`, prompting :ref:`the 403
  551. (HTTP Forbidden) view<http_forbidden_view>` instead of redirecting to the
  552. login page.
  553. If you want to use ``raise_exception`` but also give your users a chance to
  554. login first, you can add the
  555. :func:`~django.contrib.auth.decorators.login_required` decorator::
  556. from django.contrib.auth.decorators import login_required, permission_required
  557. @login_required
  558. @permission_required('polls.add_choice', raise_exception=True)
  559. def my_view(request):
  560. ...
  561. This also avoids a redirect loop when :class:`.LoginView`'s
  562. ``redirect_authenticated_user=True`` and the logged-in user doesn't have
  563. all of the required permissions.
  564. .. currentmodule:: django.contrib.auth.mixins
  565. The ``PermissionRequiredMixin`` mixin
  566. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  567. To apply permission checks to :doc:`class-based views
  568. </ref/class-based-views/index>`, you can use the ``PermissionRequiredMixin``:
  569. .. class:: PermissionRequiredMixin
  570. This mixin, just like the ``permission_required``
  571. decorator, checks whether the user accessing a view has all given
  572. permissions. You should specify the permission (or an iterable of
  573. permissions) using the ``permission_required`` parameter::
  574. from django.contrib.auth.mixins import PermissionRequiredMixin
  575. class MyView(PermissionRequiredMixin, View):
  576. permission_required = 'polls.add_choice'
  577. # Or multiple of permissions:
  578. permission_required = ('polls.view_choice', 'polls.change_choice')
  579. You can set any of the parameters of
  580. :class:`~django.contrib.auth.mixins.AccessMixin` to customize the handling
  581. of unauthorized users.
  582. You may also override these methods:
  583. .. method:: get_permission_required()
  584. Returns an iterable of permission names used by the mixin. Defaults to
  585. the ``permission_required`` attribute, converted to a tuple if
  586. necessary.
  587. .. method:: has_permission()
  588. Returns a boolean denoting whether the current user has permission to
  589. execute the decorated view. By default, this returns the result of
  590. calling :meth:`~django.contrib.auth.models.User.has_perms()` with the
  591. list of permissions returned by :meth:`get_permission_required()`.
  592. Redirecting unauthorized requests in class-based views
  593. ------------------------------------------------------
  594. To ease the handling of access restrictions in :doc:`class-based views
  595. </ref/class-based-views/index>`, the ``AccessMixin`` can be used to configure
  596. the behavior of a view when access is denied. Authenticated users are denied
  597. access with an HTTP 403 Forbidden response. Anonymous users are redirected to
  598. the login page or shown an HTTP 403 Forbidden response, depending on the
  599. :attr:`~django.contrib.auth.mixins.AccessMixin.raise_exception` attribute.
  600. .. class:: AccessMixin
  601. .. attribute:: login_url
  602. Default return value for :meth:`get_login_url`. Defaults to ``None``
  603. in which case :meth:`get_login_url` falls back to
  604. :setting:`settings.LOGIN_URL <LOGIN_URL>`.
  605. .. attribute:: permission_denied_message
  606. Default return value for :meth:`get_permission_denied_message`.
  607. Defaults to an empty string.
  608. .. attribute:: redirect_field_name
  609. Default return value for :meth:`get_redirect_field_name`. Defaults to
  610. ``"next"``.
  611. .. attribute:: raise_exception
  612. If this attribute is set to ``True``, a
  613. :class:`~django.core.exceptions.PermissionDenied` exception is raised
  614. when the conditions are not met. When ``False`` (the default),
  615. anonymous users are redirected to the login page.
  616. .. method:: get_login_url()
  617. Returns the URL that users who don't pass the test will be redirected
  618. to. Returns :attr:`login_url` if set, or :setting:`settings.LOGIN_URL
  619. <LOGIN_URL>` otherwise.
  620. .. method:: get_permission_denied_message()
  621. When :attr:`raise_exception` is ``True``, this method can be used to
  622. control the error message passed to the error handler for display to
  623. the user. Returns the :attr:`permission_denied_message` attribute by
  624. default.
  625. .. method:: get_redirect_field_name()
  626. Returns the name of the query parameter that will contain the URL the
  627. user should be redirected to after a successful login. If you set this
  628. to ``None``, a query parameter won't be added. Returns the
  629. :attr:`redirect_field_name` attribute by default.
  630. .. method:: handle_no_permission()
  631. Depending on the value of ``raise_exception``, the method either raises
  632. a :exc:`~django.core.exceptions.PermissionDenied` exception or
  633. redirects the user to the ``login_url``, optionally including the
  634. ``redirect_field_name`` if it is set.
  635. .. currentmodule:: django.contrib.auth
  636. .. _session-invalidation-on-password-change:
  637. Session invalidation on password change
  638. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  639. If your :setting:`AUTH_USER_MODEL` inherits from
  640. :class:`~django.contrib.auth.models.AbstractBaseUser` or implements its own
  641. :meth:`~django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash()`
  642. method, authenticated sessions will include the hash returned by this function.
  643. In the :class:`~django.contrib.auth.models.AbstractBaseUser` case, this is an
  644. HMAC of the password field. Django verifies that the hash in the session for
  645. each request matches the one that's computed during the request. This allows a
  646. user to log out all of their sessions by changing their password.
  647. The default password change views included with Django,
  648. :class:`~django.contrib.auth.views.PasswordChangeView` and the
  649. ``user_change_password`` view in the :mod:`django.contrib.auth` admin, update
  650. the session with the new password hash so that a user changing their own
  651. password won't log themselves out. If you have a custom password change view
  652. and wish to have similar behavior, use the :func:`update_session_auth_hash`
  653. function.
  654. .. function:: update_session_auth_hash(request, user)
  655. This function takes the current request and the updated user object from
  656. which the new session hash will be derived and updates the session hash
  657. appropriately. It also rotates the session key so that a stolen session
  658. cookie will be invalidated.
  659. Example usage::
  660. from django.contrib.auth import update_session_auth_hash
  661. def password_change(request):
  662. if request.method == 'POST':
  663. form = PasswordChangeForm(user=request.user, data=request.POST)
  664. if form.is_valid():
  665. form.save()
  666. update_session_auth_hash(request, form.user)
  667. else:
  668. ...
  669. .. note::
  670. Since
  671. :meth:`~django.contrib.auth.models.AbstractBaseUser.get_session_auth_hash()`
  672. is based on :setting:`SECRET_KEY`, updating your site to use a new secret
  673. will invalidate all existing sessions.
  674. .. _built-in-auth-views:
  675. Authentication Views
  676. --------------------
  677. .. module:: django.contrib.auth.views
  678. Django provides several views that you can use for handling login, logout, and
  679. password management. These make use of the :ref:`stock auth forms
  680. <built-in-auth-forms>` but you can pass in your own forms as well.
  681. Django provides no default template for the authentication views. You should
  682. create your own templates for the views you want to use. The template context
  683. is documented in each view, see :ref:`all-authentication-views`.
  684. .. _using-the-views:
  685. Using the views
  686. ~~~~~~~~~~~~~~~
  687. There are different methods to implement these views in your project. The
  688. easiest way is to include the provided URLconf in ``django.contrib.auth.urls``
  689. in your own URLconf, for example::
  690. urlpatterns = [
  691. path('accounts/', include('django.contrib.auth.urls')),
  692. ]
  693. This will include the following URL patterns::
  694. accounts/login/ [name='login']
  695. accounts/logout/ [name='logout']
  696. accounts/password_change/ [name='password_change']
  697. accounts/password_change/done/ [name='password_change_done']
  698. accounts/password_reset/ [name='password_reset']
  699. accounts/password_reset/done/ [name='password_reset_done']
  700. accounts/reset/<uidb64>/<token>/ [name='password_reset_confirm']
  701. accounts/reset/done/ [name='password_reset_complete']
  702. The views provide a URL name for easier reference. See :doc:`the URL
  703. documentation </topics/http/urls>` for details on using named URL patterns.
  704. If you want more control over your URLs, you can reference a specific view in
  705. your URLconf::
  706. from django.contrib.auth import views as auth_views
  707. urlpatterns = [
  708. path('change-password/', auth_views.PasswordChangeView.as_view()),
  709. ]
  710. The views have optional arguments you can use to alter the behavior of the
  711. view. For example, if you want to change the template name a view uses, you can
  712. provide the ``template_name`` argument. A way to do this is to provide keyword
  713. arguments in the URLconf, these will be passed on to the view. For example::
  714. urlpatterns = [
  715. path(
  716. 'change-password/',
  717. auth_views.PasswordChangeView.as_view(template_name='change-password.html'),
  718. ),
  719. ]
  720. All views are :doc:`class-based </topics/class-based-views/index>`, which allows
  721. you to easily customize them by subclassing.
  722. .. _all-authentication-views:
  723. All authentication views
  724. ~~~~~~~~~~~~~~~~~~~~~~~~
  725. This is a list with all the views ``django.contrib.auth`` provides. For
  726. implementation details see :ref:`using-the-views`.
  727. .. class:: LoginView
  728. **URL name:** ``login``
  729. See :doc:`the URL documentation </topics/http/urls>` for details on using
  730. named URL patterns.
  731. **Attributes:**
  732. * ``template_name``: The name of a template to display for the view used to
  733. log the user in. Defaults to :file:`registration/login.html`.
  734. * ``redirect_field_name``: The name of a ``GET`` field containing the
  735. URL to redirect to after login. Defaults to ``next``.
  736. * ``authentication_form``: A callable (typically a form class) to use for
  737. authentication. Defaults to
  738. :class:`~django.contrib.auth.forms.AuthenticationForm`.
  739. * ``extra_context``: A dictionary of context data that will be added to the
  740. default context data passed to the template.
  741. * ``redirect_authenticated_user``: A boolean that controls whether or not
  742. authenticated users accessing the login page will be redirected as if
  743. they had just successfully logged in. Defaults to ``False``.
  744. .. warning::
  745. If you enable ``redirect_authenticated_user``, other websites will be
  746. able to determine if their visitors are authenticated on your site by
  747. requesting redirect URLs to image files on your website. To avoid
  748. this "`social media fingerprinting
  749. <https://robinlinus.github.io/socialmedia-leak/>`_" information
  750. leakage, host all images and your favicon on a separate domain.
  751. Enabling ``redirect_authenticated_user`` can also result in a redirect
  752. loop when using the :func:`.permission_required` decorator
  753. unless the ``raise_exception`` parameter is used.
  754. * ``success_url_allowed_hosts``: A :class:`set` of hosts, in addition to
  755. :meth:`request.get_host() <django.http.HttpRequest.get_host>`, that are
  756. safe for redirecting after login. Defaults to an empty :class:`set`.
  757. Here's what ``LoginView`` does:
  758. * If called via ``GET``, it displays a login form that POSTs to the
  759. same URL. More on this in a bit.
  760. * If called via ``POST`` with user submitted credentials, it tries to log
  761. the user in. If login is successful, the view redirects to the URL
  762. specified in ``next``. If ``next`` isn't provided, it redirects to
  763. :setting:`settings.LOGIN_REDIRECT_URL <LOGIN_REDIRECT_URL>` (which
  764. defaults to ``/accounts/profile/``). If login isn't successful, it
  765. redisplays the login form.
  766. It's your responsibility to provide the html for the login template
  767. , called ``registration/login.html`` by default. This template gets passed
  768. four template context variables:
  769. * ``form``: A :class:`~django.forms.Form` object representing the
  770. :class:`~django.contrib.auth.forms.AuthenticationForm`.
  771. * ``next``: The URL to redirect to after successful login. This may
  772. contain a query string, too.
  773. * ``site``: The current :class:`~django.contrib.sites.models.Site`,
  774. according to the :setting:`SITE_ID` setting. If you don't have the
  775. site framework installed, this will be set to an instance of
  776. :class:`~django.contrib.sites.requests.RequestSite`, which derives the
  777. site name and domain from the current
  778. :class:`~django.http.HttpRequest`.
  779. * ``site_name``: An alias for ``site.name``. If you don't have the site
  780. framework installed, this will be set to the value of
  781. :attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
  782. For more on sites, see :doc:`/ref/contrib/sites`.
  783. If you'd prefer not to call the template :file:`registration/login.html`,
  784. you can pass the ``template_name`` parameter via the extra arguments to
  785. the ``as_view`` method in your URLconf. For example, this URLconf line would
  786. use :file:`myapp/login.html` instead::
  787. path('accounts/login/', auth_views.LoginView.as_view(template_name='myapp/login.html')),
  788. You can also specify the name of the ``GET`` field which contains the URL
  789. to redirect to after login using ``redirect_field_name``. By default, the
  790. field is called ``next``.
  791. Here's a sample :file:`registration/login.html` template you can use as a
  792. starting point. It assumes you have a :file:`base.html` template that
  793. defines a ``content`` block:
  794. .. code-block:: html+django
  795. {% extends "base.html" %}
  796. {% block content %}
  797. {% if form.errors %}
  798. <p>Your username and password didn't match. Please try again.</p>
  799. {% endif %}
  800. {% if next %}
  801. {% if user.is_authenticated %}
  802. <p>Your account doesn't have access to this page. To proceed,
  803. please login with an account that has access.</p>
  804. {% else %}
  805. <p>Please login to see this page.</p>
  806. {% endif %}
  807. {% endif %}
  808. <form method="post" action="{% url 'login' %}">
  809. {% csrf_token %}
  810. <table>
  811. <tr>
  812. <td>{{ form.username.label_tag }}</td>
  813. <td>{{ form.username }}</td>
  814. </tr>
  815. <tr>
  816. <td>{{ form.password.label_tag }}</td>
  817. <td>{{ form.password }}</td>
  818. </tr>
  819. </table>
  820. <input type="submit" value="login">
  821. <input type="hidden" name="next" value="{{ next }}">
  822. </form>
  823. {# Assumes you setup the password_reset view in your URLconf #}
  824. <p><a href="{% url 'password_reset' %}">Lost password?</a></p>
  825. {% endblock %}
  826. If you have customized authentication (see :doc:`Customizing Authentication
  827. </topics/auth/customizing>`) you can use a custom authentication form by
  828. setting the ``authentication_form`` attribute. This form must accept a
  829. ``request`` keyword argument in its ``__init__()`` method and provide a
  830. ``get_user()`` method which returns the authenticated user object (this
  831. method is only ever called after successful form validation).
  832. .. class:: LogoutView
  833. Logs a user out.
  834. **URL name:** ``logout``
  835. **Attributes:**
  836. * ``next_page``: The URL to redirect to after logout. Defaults to
  837. :setting:`settings.LOGOUT_REDIRECT_URL <LOGOUT_REDIRECT_URL>`.
  838. * ``template_name``: The full name of a template to display after
  839. logging the user out. Defaults to :file:`registration/logged_out.html`.
  840. * ``redirect_field_name``: The name of a ``GET`` field containing the
  841. URL to redirect to after log out. Defaults to ``next``. Overrides the
  842. ``next_page`` URL if the given ``GET`` parameter is passed.
  843. * ``extra_context``: A dictionary of context data that will be added to the
  844. default context data passed to the template.
  845. * ``success_url_allowed_hosts``: A :class:`set` of hosts, in addition to
  846. :meth:`request.get_host() <django.http.HttpRequest.get_host>`, that are
  847. safe for redirecting after logout. Defaults to an empty :class:`set`.
  848. **Template context:**
  849. * ``title``: The string "Logged out", localized.
  850. * ``site``: The current :class:`~django.contrib.sites.models.Site`,
  851. according to the :setting:`SITE_ID` setting. If you don't have the
  852. site framework installed, this will be set to an instance of
  853. :class:`~django.contrib.sites.requests.RequestSite`, which derives the
  854. site name and domain from the current
  855. :class:`~django.http.HttpRequest`.
  856. * ``site_name``: An alias for ``site.name``. If you don't have the site
  857. framework installed, this will be set to the value of
  858. :attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
  859. For more on sites, see :doc:`/ref/contrib/sites`.
  860. .. function:: logout_then_login(request, login_url=None)
  861. Logs a user out, then redirects to the login page.
  862. **URL name:** No default URL provided
  863. **Optional arguments:**
  864. * ``login_url``: The URL of the login page to redirect to.
  865. Defaults to :setting:`settings.LOGIN_URL <LOGIN_URL>` if not supplied.
  866. .. class:: PasswordChangeView
  867. **URL name:** ``password_change``
  868. Allows a user to change their password.
  869. **Attributes:**
  870. * ``template_name``: The full name of a template to use for
  871. displaying the password change form. Defaults to
  872. :file:`registration/password_change_form.html` if not supplied.
  873. * ``success_url``: The URL to redirect to after a successful password
  874. change.
  875. * ``form_class``: A custom "change password" form which must accept a
  876. ``user`` keyword argument. The form is responsible for actually changing
  877. the user's password. Defaults to
  878. :class:`~django.contrib.auth.forms.PasswordChangeForm`.
  879. * ``extra_context``: A dictionary of context data that will be added to the
  880. default context data passed to the template.
  881. **Template context:**
  882. * ``form``: The password change form (see ``form_class`` above).
  883. .. class:: PasswordChangeDoneView
  884. **URL name:** ``password_change_done``
  885. The page shown after a user has changed their password.
  886. **Attributes:**
  887. * ``template_name``: The full name of a template to use.
  888. Defaults to :file:`registration/password_change_done.html` if not
  889. supplied.
  890. * ``extra_context``: A dictionary of context data that will be added to the
  891. default context data passed to the template.
  892. .. class:: PasswordResetView
  893. **URL name:** ``password_reset``
  894. Allows a user to reset their password by generating a one-time use link
  895. that can be used to reset the password, and sending that link to the
  896. user's registered email address.
  897. If the email address provided does not exist in the system, this view
  898. won't send an email, but the user won't receive any error message either.
  899. This prevents information leaking to potential attackers. If you want to
  900. provide an error message in this case, you can subclass
  901. :class:`~django.contrib.auth.forms.PasswordResetForm` and use the
  902. ``form_class`` attribute.
  903. Users flagged with an unusable password (see
  904. :meth:`~django.contrib.auth.models.User.set_unusable_password()` aren't
  905. allowed to request a password reset to prevent misuse when using an
  906. external authentication source like LDAP. Note that they won't receive any
  907. error message since this would expose their account's existence but no
  908. mail will be sent either.
  909. **Attributes:**
  910. * ``template_name``: The full name of a template to use for
  911. displaying the password reset form. Defaults to
  912. :file:`registration/password_reset_form.html` if not supplied.
  913. * ``form_class``: Form that will be used to get the email of
  914. the user to reset the password for. Defaults to
  915. :class:`~django.contrib.auth.forms.PasswordResetForm`.
  916. * ``email_template_name``: The full name of a template to use for
  917. generating the email with the reset password link. Defaults to
  918. :file:`registration/password_reset_email.html` if not supplied.
  919. * ``subject_template_name``: The full name of a template to use for
  920. the subject of the email with the reset password link. Defaults
  921. to :file:`registration/password_reset_subject.txt` if not supplied.
  922. * ``token_generator``: Instance of the class to check the one time link.
  923. This will default to ``default_token_generator``, it's an instance of
  924. ``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
  925. * ``success_url``: The URL to redirect to after a successful password reset
  926. request.
  927. * ``from_email``: A valid email address. By default Django uses
  928. the :setting:`DEFAULT_FROM_EMAIL`.
  929. * ``extra_context``: A dictionary of context data that will be added to the
  930. default context data passed to the template.
  931. * ``html_email_template_name``: The full name of a template to use
  932. for generating a ``text/html`` multipart email with the password reset
  933. link. By default, HTML email is not sent.
  934. * ``extra_email_context``: A dictionary of context data that will be
  935. available in the email template. It can be used to override default
  936. template context values listed below e.g. ``domain``.
  937. **Template context:**
  938. * ``form``: The form (see ``form_class`` above) for resetting the user's
  939. password.
  940. **Email template context:**
  941. * ``email``: An alias for ``user.email``
  942. * ``user``: The current :class:`~django.contrib.auth.models.User`,
  943. according to the ``email`` form field. Only active users are able to
  944. reset their passwords (``User.is_active is True``).
  945. * ``site_name``: An alias for ``site.name``. If you don't have the site
  946. framework installed, this will be set to the value of
  947. :attr:`request.META['SERVER_NAME'] <django.http.HttpRequest.META>`.
  948. For more on sites, see :doc:`/ref/contrib/sites`.
  949. * ``domain``: An alias for ``site.domain``. If you don't have the site
  950. framework installed, this will be set to the value of
  951. ``request.get_host()``.
  952. * ``protocol``: http or https
  953. * ``uid``: The user's primary key encoded in base 64.
  954. * ``token``: Token to check that the reset link is valid.
  955. Sample ``registration/password_reset_email.html`` (email body template):
  956. .. code-block:: html+django
  957. Someone asked for password reset for email {{ email }}. Follow the link below:
  958. {{ protocol}}://{{ domain }}{% url 'password_reset_confirm' uidb64=uid token=token %}
  959. The same template context is used for subject template. Subject must be
  960. single line plain text string.
  961. .. class:: PasswordResetDoneView
  962. **URL name:** ``password_reset_done``
  963. The page shown after a user has been emailed a link to reset their
  964. password. This view is called by default if the :class:`PasswordResetView`
  965. doesn't have an explicit ``success_url`` URL set.
  966. .. note::
  967. If the email address provided does not exist in the system, the user is
  968. inactive, or has an unusable password, the user will still be
  969. redirected to this view but no email will be sent.
  970. **Attributes:**
  971. * ``template_name``: The full name of a template to use.
  972. Defaults to :file:`registration/password_reset_done.html` if not
  973. supplied.
  974. * ``extra_context``: A dictionary of context data that will be added to the
  975. default context data passed to the template.
  976. .. class:: PasswordResetConfirmView
  977. **URL name:** ``password_reset_confirm``
  978. Presents a form for entering a new password.
  979. **Keyword arguments from the URL:**
  980. * ``uidb64``: The user's id encoded in base 64.
  981. * ``token``: Token to check that the password is valid.
  982. **Attributes:**
  983. * ``template_name``: The full name of a template to display the confirm
  984. password view. Default value is
  985. :file:`registration/password_reset_confirm.html`.
  986. * ``token_generator``: Instance of the class to check the password. This
  987. will default to ``default_token_generator``, it's an instance of
  988. ``django.contrib.auth.tokens.PasswordResetTokenGenerator``.
  989. * ``post_reset_login``: A boolean indicating if the user should be
  990. automatically authenticated after a successful password reset. Defaults
  991. to ``False``.
  992. * ``post_reset_login_backend``: A dotted path to the authentication
  993. backend to use when authenticating a user if ``post_reset_login`` is
  994. ``True``. Required only if you have multiple
  995. :setting:`AUTHENTICATION_BACKENDS` configured. Defaults to ``None``.
  996. * ``form_class``: Form that will be used to set the password. Defaults to
  997. :class:`~django.contrib.auth.forms.SetPasswordForm`.
  998. * ``success_url``: URL to redirect after the password reset done. Defaults
  999. to ``'password_reset_complete'``.
  1000. * ``extra_context``: A dictionary of context data that will be added to the
  1001. default context data passed to the template.
  1002. * ``reset_url_token``: Token parameter displayed as a component of password
  1003. reset URLs. Defaults to ``'set-password'``.
  1004. .. versionchanged:: 3.0
  1005. The ``reset_url_token`` class attribute was added.
  1006. **Template context:**
  1007. * ``form``: The form (see ``form_class`` above) for setting the new user's
  1008. password.
  1009. * ``validlink``: Boolean, True if the link (combination of ``uidb64`` and
  1010. ``token``) is valid or unused yet.
  1011. .. class:: PasswordResetCompleteView
  1012. **URL name:** ``password_reset_complete``
  1013. Presents a view which informs the user that the password has been
  1014. successfully changed.
  1015. **Attributes:**
  1016. * ``template_name``: The full name of a template to display the view.
  1017. Defaults to :file:`registration/password_reset_complete.html`.
  1018. * ``extra_context``: A dictionary of context data that will be added to the
  1019. default context data passed to the template.
  1020. Helper functions
  1021. ----------------
  1022. .. currentmodule:: django.contrib.auth.views
  1023. .. function:: redirect_to_login(next, login_url=None, redirect_field_name='next')
  1024. Redirects to the login page, and then back to another URL after a
  1025. successful login.
  1026. **Required arguments:**
  1027. * ``next``: The URL to redirect to after a successful login.
  1028. **Optional arguments:**
  1029. * ``login_url``: The URL of the login page to redirect to.
  1030. Defaults to :setting:`settings.LOGIN_URL <LOGIN_URL>` if not supplied.
  1031. * ``redirect_field_name``: The name of a ``GET`` field containing the
  1032. URL to redirect to after log out. Overrides ``next`` if the given
  1033. ``GET`` parameter is passed.
  1034. .. _built-in-auth-forms:
  1035. Built-in forms
  1036. --------------
  1037. .. module:: django.contrib.auth.forms
  1038. If you don't want to use the built-in views, but want the convenience of not
  1039. having to write forms for this functionality, the authentication system
  1040. provides several built-in forms located in :mod:`django.contrib.auth.forms`:
  1041. .. note::
  1042. The built-in authentication forms make certain assumptions about the user
  1043. model that they are working with. If you're using a :ref:`custom user model
  1044. <auth-custom-user>`, it may be necessary to define your own forms for the
  1045. authentication system. For more information, refer to the documentation
  1046. about :ref:`using the built-in authentication forms with custom user models
  1047. <custom-users-and-the-built-in-auth-forms>`.
  1048. .. class:: AdminPasswordChangeForm
  1049. A form used in the admin interface to change a user's password.
  1050. Takes the ``user`` as the first positional argument.
  1051. .. class:: AuthenticationForm
  1052. A form for logging a user in.
  1053. Takes ``request`` as its first positional argument, which is stored on the
  1054. form instance for use by sub-classes.
  1055. .. method:: confirm_login_allowed(user)
  1056. By default, ``AuthenticationForm`` rejects users whose ``is_active``
  1057. flag is set to ``False``. You may override this behavior with a custom
  1058. policy to determine which users can log in. Do this with a custom form
  1059. that subclasses ``AuthenticationForm`` and overrides the
  1060. ``confirm_login_allowed()`` method. This method should raise a
  1061. :exc:`~django.core.exceptions.ValidationError` if the given user may
  1062. not log in.
  1063. For example, to allow all users to log in regardless of "active"
  1064. status::
  1065. from django.contrib.auth.forms import AuthenticationForm
  1066. class AuthenticationFormWithInactiveUsersOkay(AuthenticationForm):
  1067. def confirm_login_allowed(self, user):
  1068. pass
  1069. (In this case, you'll also need to use an authentication backend that
  1070. allows inactive users, such as
  1071. :class:`~django.contrib.auth.backends.AllowAllUsersModelBackend`.)
  1072. Or to allow only some active users to log in::
  1073. class PickyAuthenticationForm(AuthenticationForm):
  1074. def confirm_login_allowed(self, user):
  1075. if not user.is_active:
  1076. raise forms.ValidationError(
  1077. _("This account is inactive."),
  1078. code='inactive',
  1079. )
  1080. if user.username.startswith('b'):
  1081. raise forms.ValidationError(
  1082. _("Sorry, accounts starting with 'b' aren't welcome here."),
  1083. code='no_b_users',
  1084. )
  1085. .. class:: PasswordChangeForm
  1086. A form for allowing a user to change their password.
  1087. .. class:: PasswordResetForm
  1088. A form for generating and emailing a one-time use link to reset a
  1089. user's password.
  1090. .. method:: send_mail(subject_template_name, email_template_name, context, from_email, to_email, html_email_template_name=None)
  1091. Uses the arguments to send an ``EmailMultiAlternatives``.
  1092. Can be overridden to customize how the email is sent to the user.
  1093. :param subject_template_name: the template for the subject.
  1094. :param email_template_name: the template for the email body.
  1095. :param context: context passed to the ``subject_template``,
  1096. ``email_template``, and ``html_email_template`` (if it is not
  1097. ``None``).
  1098. :param from_email: the sender's email.
  1099. :param to_email: the email of the requester.
  1100. :param html_email_template_name: the template for the HTML body;
  1101. defaults to ``None``, in which case a plain text email is sent.
  1102. By default, ``save()`` populates the ``context`` with the
  1103. same variables that
  1104. :class:`~django.contrib.auth.views.PasswordResetView` passes to its
  1105. email context.
  1106. .. class:: SetPasswordForm
  1107. A form that lets a user change their password without entering the old
  1108. password.
  1109. .. class:: UserChangeForm
  1110. A form used in the admin interface to change a user's information and
  1111. permissions.
  1112. .. class:: UserCreationForm
  1113. A :class:`~django.forms.ModelForm` for creating a new user.
  1114. It has three fields: ``username`` (from the user model), ``password1``,
  1115. and ``password2``. It verifies that ``password1`` and ``password2`` match,
  1116. validates the password using
  1117. :func:`~django.contrib.auth.password_validation.validate_password`, and
  1118. sets the user's password using
  1119. :meth:`~django.contrib.auth.models.User.set_password()`.
  1120. .. currentmodule:: django.contrib.auth
  1121. Authentication data in templates
  1122. --------------------------------
  1123. The currently logged-in user and their permissions are made available in the
  1124. :doc:`template context </ref/templates/api>` when you use
  1125. :class:`~django.template.RequestContext`.
  1126. .. admonition:: Technicality
  1127. Technically, these variables are only made available in the template
  1128. context if you use :class:`~django.template.RequestContext` and the
  1129. ``'django.contrib.auth.context_processors.auth'`` context processor is
  1130. enabled. It is in the default generated settings file. For more, see the
  1131. :ref:`RequestContext docs <subclassing-context-requestcontext>`.
  1132. Users
  1133. ~~~~~
  1134. When rendering a template :class:`~django.template.RequestContext`, the
  1135. currently logged-in user, either a :class:`~django.contrib.auth.models.User`
  1136. instance or an :class:`~django.contrib.auth.models.AnonymousUser` instance, is
  1137. stored in the template variable ``{{ user }}``:
  1138. .. code-block:: html+django
  1139. {% if user.is_authenticated %}
  1140. <p>Welcome, {{ user.username }}. Thanks for logging in.</p>
  1141. {% else %}
  1142. <p>Welcome, new user. Please log in.</p>
  1143. {% endif %}
  1144. This template context variable is not available if a ``RequestContext`` is not
  1145. being used.
  1146. Permissions
  1147. ~~~~~~~~~~~
  1148. The currently logged-in user's permissions are stored in the template variable
  1149. ``{{ perms }}``. This is an instance of
  1150. ``django.contrib.auth.context_processors.PermWrapper``, which is a
  1151. template-friendly proxy of permissions.
  1152. Evaluating a single-attribute lookup of ``{{ perms }}`` as a boolean is a proxy
  1153. to :meth:`User.has_module_perms()
  1154. <django.contrib.auth.models.User.has_module_perms>`. For example, to check if
  1155. the logged-in user has any permissions in the ``foo`` app::
  1156. {% if perms.foo %}
  1157. Evaluating a two-level-attribute lookup as a boolean is a proxy to
  1158. :meth:`User.has_perm() <django.contrib.auth.models.User.has_perm>`. For example,
  1159. to check if the logged-in user has the permission ``foo.add_vote``::
  1160. {% if perms.foo.add_vote %}
  1161. Here's a more complete example of checking permissions in a template:
  1162. .. code-block:: html+django
  1163. {% if perms.foo %}
  1164. <p>You have permission to do something in the foo app.</p>
  1165. {% if perms.foo.add_vote %}
  1166. <p>You can vote!</p>
  1167. {% endif %}
  1168. {% if perms.foo.add_driving %}
  1169. <p>You can drive!</p>
  1170. {% endif %}
  1171. {% else %}
  1172. <p>You don't have permission to do anything in the foo app.</p>
  1173. {% endif %}
  1174. It is possible to also look permissions up by ``{% if in %}`` statements.
  1175. For example:
  1176. .. code-block:: html+django
  1177. {% if 'foo' in perms %}
  1178. {% if 'foo.add_vote' in perms %}
  1179. <p>In lookup works, too.</p>
  1180. {% endif %}
  1181. {% endif %}
  1182. .. _auth-admin:
  1183. Managing users in the admin
  1184. ===========================
  1185. When you have both ``django.contrib.admin`` and ``django.contrib.auth``
  1186. installed, the admin provides a convenient way to view and manage users,
  1187. groups, and permissions. Users can be created and deleted like any Django
  1188. model. Groups can be created, and permissions can be assigned to users or
  1189. groups. A log of user edits to models made within the admin is also stored and
  1190. displayed.
  1191. Creating users
  1192. --------------
  1193. You should see a link to "Users" in the "Auth"
  1194. section of the main admin index page. The "Add user" admin page is different
  1195. than standard admin pages in that it requires you to choose a username and
  1196. password before allowing you to edit the rest of the user's fields.
  1197. Also note: if you want a user account to be able to create users using the
  1198. Django admin site, you'll need to give them permission to add users *and*
  1199. change users (i.e., the "Add user" and "Change user" permissions). If an
  1200. account has permission to add users but not to change them, that account won't
  1201. be able to add users. Why? Because if you have permission to add users, you
  1202. have the power to create superusers, which can then, in turn, change other
  1203. users. So Django requires add *and* change permissions as a slight security
  1204. measure.
  1205. Be thoughtful about how you allow users to manage permissions. If you give a
  1206. non-superuser the ability to edit users, this is ultimately the same as giving
  1207. them superuser status because they will be able to elevate permissions of
  1208. users including themselves!
  1209. Changing passwords
  1210. ------------------
  1211. User passwords are not displayed in the admin (nor stored in the database), but
  1212. the :doc:`password storage details </topics/auth/passwords>` are displayed.
  1213. Included in the display of this information is a link to
  1214. a password change form that allows admins to change user passwords.