On Thursday, October 31, 2019 at 12:22:48 PM UTC, Kasper Laudrup wrote:
>
> Hi হজমুলা খান, 
>
> On 31/10/2019 11.22, হজমুলা খান wrote: 
> > i am novice and following django for beginners ebook. while i am running 
> > the program  base.html and about.html are working properly but when i 
> > click on the home link, it shows: 
> > 
> > 
> >   Page not found (404) 
> > 
> > Request Method:        GET 
> > Request URL:        http://localhost:8000/home 
> > 
> > Using the URLconf defined in |pages_project.urls|, Django tried these 
> > URL patterns, in this order: 
> > 
> >  1. admin/ 
> >  2. [name='home'] 
> >  3. about/ [name='about'] 
> > 
> > The current path, |home|, didn't match any of these. 
> > 
> > 
> > i have installed Jinja2 and if i open base.html without running django 
> > server, it works well but under django server it's not working. what 
> > should i do? 
> > 
>
> You need to add 'home' to your urls.py inside your pages_project 
> directory. Read more here: 
>
> https://docs.djangoproject.com/en/2.2/topics/http/urls/ 
>
> Kind regards, 
>
> Kasper Laudrup 
>


thanx for your reply. i have edited pages_project/urls.py as follows: 
urlpatterns = [ path('admin/', admin.site.urls), path('home/', 
include('pages.urls')), in this case home page is working but base.html and 
about.html is not showing . if i add path('about/', include('pages.urls')), 
then both home.html and about.html is showing but the url becomes 
localhost:8000/home/about. localhost:8000/about is not working. i put 
home.html in new folder pages and the order your talked about but they have 
no effect because i kept the files in both sides. plz share any new idea  

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to django-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/83c8c6ed-0a81-47a3-9e51-bdf8458fb2bb%40googlegroups.com.

Reply via email to