diff --git a/inventory/urls.py b/inventory/urls.py index 0de89f7a..94b061ba 100644 --- a/inventory/urls.py +++ b/inventory/urls.py @@ -9,7 +9,7 @@ from django.conf.urls import handler403, handler400, handler404, handler500 urlpatterns = [ # main URLs path("", views.HomeView.as_view(), name="home"), - # path("/", views.HomeView.as_view(), name="home"), + path("/", views.HomeView.as_view(), name="home"), path("welcome/", views.WelcomeView.as_view(), name="welcome"), # Accounts URLs # path("login/", allauth_views.LoginView.as_view(template_name="account/login.html"), name="account_login"), diff --git a/templates/inventory/car_confirm_delete.html b/templates/inventory/car_confirm_delete.html index 1649407f..d210cb25 100644 --- a/templates/inventory/car_confirm_delete.html +++ b/templates/inventory/car_confirm_delete.html @@ -3,11 +3,13 @@ {% load i18n %} {% block title %}Delete Car{% endblock %} {% block content %} +

Delete Car

-

Are you sure you want to delete the car "{{ car }}"?

+

Are you sure you want to delete the car "{{ car }}"?

{% csrf_token %} - {% trans 'Cancel' %} + {% trans 'Cancel' %}
+
{% endblock %}