79752189

Date: 2025-09-01 05:45:08
Score: 0.5
Natty:
Report link
TEMPLATES = [{
  "BACKEND": "django.template.backends.django.DjangoTemplates",
  "DIRS": [],
  "APP_DIRS": True,   # <-- must be True
  "OPTIONS": {"context_processors": [
    "django.template.context_processors.request",
    "django.contrib.auth.context_processors.auth",
    "django.contrib.messages.context_processors.messages",
  ]},
}]
courses/templates/registration/login.html
path("accounts/login/",
     auth_views.LoginView.as_view(template_name="registration/login.html"),
     name="login")
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Umar Sherwani