Skip to content

Commit

Permalink
Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
Bondzik-S committed Nov 22, 2024
1 parent 938c924 commit b3c2fa0
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 0 deletions.
Binary file modified db.sqlite3
Binary file not shown.
3 changes: 3 additions & 0 deletions taxi/views.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
from http.client import HTTPResponse

from django.contrib.auth.decorators import login_required
from django.contrib.auth.mixins import LoginRequiredMixin
from django.http import HttpRequest
from django.shortcuts import render
from django.views import generic

Expand Down
1 change: 1 addition & 0 deletions taxi_service/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
path("admin/", admin.site.urls),
path("", include("taxi.urls", namespace="taxi")),
path("accounts/", include("django.contrib.auth.urls")),
path("__debug__/", include("debug_toolbar.urls")),
] + static(
settings.STATIC_URL,
document_root=settings.STATIC_ROOT
Expand Down

0 comments on commit b3c2fa0

Please sign in to comment.