fix: Resolve URL routing issues and add favicon
- Fixed URL name from 'about_view' to 'about' to match template usage - Added inline SVG favicon to avoid 404 errors - All pages now load without NoReverseMatch errors - Modern design is fully functional
This commit is contained in:
@@ -12,7 +12,7 @@ urlpatterns = [
|
||||
path('blog/<int:pk>/', views.blog_post_detail, name='blog_post_detail'),
|
||||
path('services/', views.services_view, name='services'),
|
||||
# path('create_order/<int:pk>/', views.create_order, name='create_order'),
|
||||
path('about/', views.about_view, name="about_view"),
|
||||
path('about/', views.about_view, name="about"),
|
||||
path('service/generate_qr_code/<int:service_id>/', views.generate_qr_code, name='generate_qr_code'),
|
||||
path('service/request_status/<int:service_id>/', views.request_status, name='request_status'),
|
||||
path('service/request/<int:service_id>/', views.create_service_request, name='create_service_request'),
|
||||
|
||||
Reference in New Issue
Block a user