From b3b87280251c838c423a6716c4ded7c27b6a1254 Mon Sep 17 00:00:00 2001 From: Sannidhya Dasgupta <73464131+Sannidhya127@users.noreply.github.com> Date: Mon, 26 Oct 2020 15:24:07 +0530 Subject: [PATCH] added a services url to urls.py Hi Harry Bhai, I am following your Django Course and thought a services page would make this project look even better. I will make changes to views.py, index.html, analyze.html (designing only; no backend cherkhani). Please merge my request --- textutils/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/textutils/urls.py b/textutils/urls.py index 920f07ad..ca556a55 100644 --- a/textutils/urls.py +++ b/textutils/urls.py @@ -21,6 +21,7 @@ path('admin/', admin.site.urls), path('', views.index, name='index'), path('analyze', views.analyze, name='analyze'), - path('about', views.about, name='about') + path('about', views.about, name='about'), + path('services', views.services, name='services') ]