From e8dc728ebe5c293486d7aadd745b825e9843255d Mon Sep 17 00:00:00 2001
From: Alex Bul
Date: Wed, 30 Oct 2024 21:41:42 +0200
Subject: [PATCH] 'Solution'
---
templates/includes/pagination.html | 39 ++++++++++++++++++++-------
templates/taxi/driver_detail.html | 4 +--
templates/taxi/manufacturer_list.html | 2 +-
3 files changed, 33 insertions(+), 12 deletions(-)
diff --git a/templates/includes/pagination.html b/templates/includes/pagination.html
index 18405ec20..cb5ed76c1 100644
--- a/templates/includes/pagination.html
+++ b/templates/includes/pagination.html
@@ -1,10 +1,31 @@
-
-
-
-
- Title
-
-
+{% if is_paginated %}
+
+{% endif %}
\ No newline at end of file
diff --git a/templates/taxi/driver_detail.html b/templates/taxi/driver_detail.html
index e6880d5b3..aa7d5a3e5 100644
--- a/templates/taxi/driver_detail.html
+++ b/templates/taxi/driver_detail.html
@@ -4,8 +4,8 @@
Driver of detail
{{ driver.first_name }} {{ driver.last_name}}
+ {% endfor %}
{% endblock %}
\ No newline at end of file
diff --git a/templates/taxi/manufacturer_list.html b/templates/taxi/manufacturer_list.html
index 9c8f90363..9e7fc15ab 100644
--- a/templates/taxi/manufacturer_list.html
+++ b/templates/taxi/manufacturer_list.html
@@ -5,7 +5,7 @@ Manufacturers of list
{% if manufacturer_list %}
{% for manufacturer in manufacturer_list %}
- - {{ manufacturer.name }} h
+ - {{ manufacturer.name }}
{% endfor %}
{% endif %}