Funktionierender Prototyp des Serious Games zur Vermittlung von Wissen zu Software-Engineering-Arbeitsmodellen.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

urls.py 1.2KB

1 year ago
123456789101112131415161718192021222324252627282930313233343536
  1. # The views used below are normally mapped in the AdminSite instance.
  2. # This URLs file is used to provide a reliable view deployment for test purposes.
  3. # It is also provided as a convenience to those who want to deploy these URLs
  4. # elsewhere.
  5. from django.contrib.auth import views
  6. from django.urls import path
  7. urlpatterns = [
  8. path("login/", views.LoginView.as_view(), name="login"),
  9. path("logout/", views.LogoutView.as_view(), name="logout"),
  10. path(
  11. "password_change/", views.PasswordChangeView.as_view(), name="password_change"
  12. ),
  13. path(
  14. "password_change/done/",
  15. views.PasswordChangeDoneView.as_view(),
  16. name="password_change_done",
  17. ),
  18. path("password_reset/", views.PasswordResetView.as_view(), name="password_reset"),
  19. path(
  20. "password_reset/done/",
  21. views.PasswordResetDoneView.as_view(),
  22. name="password_reset_done",
  23. ),
  24. path(
  25. "reset/<uidb64>/<token>/",
  26. views.PasswordResetConfirmView.as_view(),
  27. name="password_reset_confirm",
  28. ),
  29. path(
  30. "reset/done/",
  31. views.PasswordResetCompleteView.as_view(),
  32. name="password_reset_complete",
  33. ),
  34. ]