Skip to content
Projeler
Gruplar
Parçacıklar
Yardım
Yükleniyor...
Oturum aç / Kaydol
Gezinmeyi değiştir
D
django
Proje
Proje
Ayrıntılar
Etkinlik
Cycle Analytics
Depo (repository)
Depo (repository)
Dosyalar
Kayıtlar (commit)
Dallar (branch)
Etiketler
Katkıda bulunanlar
Grafik
Karşılaştır
Grafikler
Konular (issue)
0
Konular (issue)
0
Liste
Pano
Etiketler
Kilometre Taşları
Birleştirme (merge) Talepleri
0
Birleştirme (merge) Talepleri
0
CI / CD
CI / CD
İş akışları (pipeline)
İşler
Zamanlamalar
Grafikler
Paketler
Paketler
Wiki
Wiki
Parçacıklar
Parçacıklar
Üyeler
Üyeler
Collapse sidebar
Close sidebar
Etkinlik
Grafik
Grafikler
Yeni bir konu (issue) oluştur
İşler
Kayıtlar (commit)
Konu (issue) Panoları
Kenar çubuğunu aç
Batuhan Osman TASKAYA
django
Commits
4114b441
Unverified
Kaydet (Commit)
4114b441
authored
Ara 06, 2017
tarafından
Tim Graham
Kaydeden (comit)
GitHub
Ara 06, 2017
Dosyalara gözat
Seçenekler
Dosyalara Gözat
İndir
Eposta Yamaları
Sade Fark
Fixed #28886 -- Updated prefix for example django.contrib.auth.urls URLs.
üst
bae365e1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
default.txt
docs/topics/auth/default.txt
+9
-9
No files found.
docs/topics/auth/default.txt
Dosyayı görüntüle @
4114b441
...
@@ -887,19 +887,19 @@ easiest way is to include the provided URLconf in ``django.contrib.auth.urls``
...
@@ -887,19 +887,19 @@ easiest way is to include the provided URLconf in ``django.contrib.auth.urls``
in your own URLconf, for example::
in your own URLconf, for example::
urlpatterns = [
urlpatterns = [
path('', include('django.contrib.auth.urls')),
path('
accounts/
', include('django.contrib.auth.urls')),
]
]
This will include the following URL patterns::
This will include the following URL patterns::
^login/$
[name='login']
accounts/login/
[name='login']
^logout/$
[name='logout']
accounts/logout/
[name='logout']
^password_change/$
[name='password_change']
accounts/password_change/
[name='password_change']
^password_change/done/$
[name='password_change_done']
accounts/password_change/done/
[name='password_change_done']
^password_reset/$
[name='password_reset']
accounts/password_reset/
[name='password_reset']
^password_reset/done/$
[name='password_reset_done']
accounts/password_reset/done/
[name='password_reset_done']
^reset/(?P<uidb64>[0-9A-Za-z_\-]+)/(?P<token>[0-9A-Za-z]{1,13}-[0-9A-Za-z]{1,20})/$
[name='password_reset_confirm']
accounts/reset/<uidb64>/<token>/
[name='password_reset_confirm']
^reset/done/$
[name='password_reset_complete']
accounts/reset/done/
[name='password_reset_complete']
The views provide a URL name for easier reference. See :doc:`the URL
The views provide a URL name for easier reference. See :doc:`the URL
documentation </topics/http/urls>` for details on using named URL patterns.
documentation </topics/http/urls>` for details on using named URL patterns.
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment