path('welcome.html', welcome)

should be :

path('', welcome)



Op 4/05/2020 om 20:11 schreef 'Amitesh Sahay' via Django users:
There are lots of issues with urls.py
Please go through the django documents on how to write urls.py

Sent from Yahoo Mail on Android <https://go.onelink.me/107872968?pid=InProduct&c=Global_Internal_YGrowth_AndroidEmailSig__AndroidUsers&af_wl=ym&af_sub1=Internal&af_sub2=Global_YGrowth&af_sub3=EmailSignature>

    On Mon, 4 May 2020 at 23:39, Deepti sharma
    <sharmadeepti...@gmail.com> wrote:
    Hi, I have just started learning django and was trying to make a
    meeting planner project y folllowing a course.
    I updated the setting.py file to add website into Instaled_Apps.
    Then have written a function named welcome in views.py
    Finally I added it's entry into urls.py fie
    But when I run the server, I am getting following error on webpage:


      Page not found (404)

    Request Method:     GET
    Request URL:        http://127.0.0.1:8000/

    Using the URLconf defined in |meeting_planner.urls|, Django tried
    these URL patterns, in this order:

     1. admin/
     2. welcome.html/

    The empty path didn't match any of these.

    You're seeing this error because you have |DEBUG = True| in your
    Django settings file. Change that to |False|, and Django will
    display a standard 404 page.


    Can someone please help me with this? I am stuck.



    This is my code: (meeting_planner/website/views.py):

    from django.shortcutsimport render
    from django.httpimport HttpRequest
    # Create your views here. def welcome(request):
         return HttpRequest("Welcome to the Meeting Planner Website!")

    (meeting_planner/meeting_planer/urls.py):

    from django.contribimport admin
    from django.urlsimport path
    from websiteimport views
    from django.conf.urlsimport url,include

    from website.viewsimport welcome

    urlpatterns = [
         path('admin/', admin.site.urls),
         path('welcome.html', welcome)
    ]



-- 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
    <mailto:django-users+unsubscr...@googlegroups.com>.
    To view this discussion on the web visit
    
https://groups.google.com/d/msgid/django-users/3d38a2c2-3449-4c2f-839e-244b9295f55d%40googlegroups.com
    
<https://groups.google.com/d/msgid/django-users/3d38a2c2-3449-4c2f-839e-244b9295f55d%40googlegroups.com?utm_medium=email&utm_source=footer>.

--
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 <mailto:django-users+unsubscr...@googlegroups.com>. To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/1203797502.769610.1588615897439%40mail.yahoo.com <https://groups.google.com/d/msgid/django-users/1203797502.769610.1588615897439%40mail.yahoo.com?utm_medium=email&utm_source=footer>.

--
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/5eaf7787-ad7c-434a-c848-698bd068b686%40gmail.com.

Reply via email to