diff --git a/taxi/urls.py b/taxi/urls.py index c663d6e2..bf73e46f 100644 --- a/taxi/urls.py +++ b/taxi/urls.py @@ -1,27 +1,8 @@ from django.urls import path +from . import views -from .views import ( - index, - CarListView, - CarDetailView, - DriverListView, - DriverDetailView, - ManufacturerListView, -) +app_name = "taxi" urlpatterns = [ - path("", index, name="index"), - path( - "manufacturers/", - ManufacturerListView.as_view(), - name="manufacturer-list", - ), - path("cars/", CarListView.as_view(), name="car-list"), - path("cars//", CarDetailView.as_view(), name="car-detail"), - path("drivers/", DriverListView.as_view(), name="driver-list"), - path( - "drivers//", DriverDetailView.as_view(), name="driver-detail" - ), + path("", views.index, name="index"), ] - -app_name = "taxi" diff --git a/taxi/views.py b/taxi/views.py index 82ad312f..e7dc4312 100644 --- a/taxi/views.py +++ b/taxi/views.py @@ -1,47 +1,14 @@ +from django.contrib.auth.decorators import login_required +from django.contrib.auth.mixins import LoginRequiredMixin from django.shortcuts import render from django.views import generic from .models import Driver, Car, Manufacturer +@login_required def index(request): """View function for the home page of the site.""" - num_drivers = Driver.objects.count() - num_cars = Car.objects.count() - num_manufacturers = Manufacturer.objects.count() - - context = { - "num_drivers": num_drivers, - "num_cars": num_cars, - "num_manufacturers": num_manufacturers, - } - - return render(request, "taxi/index.html", context=context) - - -class ManufacturerListView(generic.ListView): - model = Manufacturer - context_object_name = "manufacturer_list" - template_name = "taxi/manufacturer_list.html" - paginate_by = 5 - - -class CarListView(generic.ListView): - model = Car - paginate_by = 5 - queryset = Car.objects.select_related("manufacturer") - - -class CarDetailView(generic.DetailView): - model = Car - - -class DriverListView(generic.ListView): - model = Driver - paginate_by = 5 - - -class DriverDetailView(generic.DetailView): - model = Driver - queryset = Driver.objects.prefetch_related("cars__manufacturer") + num_visits = request.session.get("num_visits", 1) + request.session["num_visits"] = num_visits + 1 diff --git a/taxi_service/settings.py b/taxi_service/settings.py index b6c0cf19..93487abb 100644 --- a/taxi_service/settings.py +++ b/taxi_service/settings.py @@ -42,6 +42,8 @@ "taxi", ] +LOGIN_URL = "/login/" + MIDDLEWARE = [ "django.middleware.security.SecurityMiddleware", "django.contrib.sessions.middleware.SessionMiddleware", @@ -133,3 +135,7 @@ # https://docs.djangoproject.com/en/4.0/ref/settings/#default-auto-field DEFAULT_AUTO_FIELD = "django.db.models.BigAutoField" + +LOGIN_REDIRECT_URL = "/" + +LOGOUT_REDIRECT_URL = "/" diff --git a/taxi_service/urls.py b/taxi_service/urls.py index 8b94449f..c8e2f44a 100644 --- a/taxi_service/urls.py +++ b/taxi_service/urls.py @@ -1,5 +1,4 @@ """taxi_service URL Configuration - The `urlpatterns` list routes URLs to views. For more information please see: https://docs.djangoproject.com/en/4.0/topics/http/urls/ Examples: @@ -17,9 +16,8 @@ from django.urls import path, include from django.conf import settings from django.conf.urls.static import static - - urlpatterns = [ path("admin/", admin.site.urls), path("", include("taxi.urls", namespace="taxi")), + path("accounts/", include("django.contrib.auth.urls")), ] + static(settings.STATIC_URL, document_root=settings.STATIC_ROOT) diff --git a/templates/includes/sidebar.html b/templates/includes/sidebar.html index b7cd72dc..23a1a0f6 100644 --- a/templates/includes/sidebar.html +++ b/templates/includes/sidebar.html @@ -1,3 +1,9 @@ +{% if user.is_authenticated %} +

Username: {{ user.username }}

+ Logout +{% else %} + Login +{% endif %} diff --git a/templates/taxi/index.html b/templates/taxi/index.html index 13c59aa8..b9010a2e 100644 --- a/templates/taxi/index.html +++ b/templates/taxi/index.html @@ -1,5 +1,4 @@ {% extends "base.html" %} - {% block content %}

Taxi Service Home

Welcome to Best Taxi Ever!

@@ -10,4 +9,5 @@

Dynamic content

  • Drivers: {{ num_drivers }}
  • Manufacturers: {{ num_manufacturers }}
  • +

    You've visited this page {{ num_visits }} time{{ num_visits|pluralize }}

    {% endblock %}