Re: help with URLS.PY

2019-05-03 Thread Rob W
Sure. Here is my urls.py from django.conf.urls import url from django.contrib import admin from django.urls import path from vr_reporting_app.views import HomeView from vr_reporting_app.views import Local from vr_reporting_app.views import User from vr_reporting_app.views import School urlpatt

Re: help with URLS.PY

2019-05-03 Thread anchal agarwal
I am also facing the same issue ,can you tell me how you resolved this issue? On 03-May-2019 9:57 pm, wrote: > > I resolved this. > > > On Thursday, May 2, 2019 at 5:21:59 PM UTC-4, randmw...@gmail.com wrote: >> >> new to django. so i have an app that displays an html page. i also have a menu on t

Re: help with URLS.PY

2019-05-03 Thread randmwheeler
I resolved this. On Thursday, May 2, 2019 at 5:21:59 PM UTC-4, randmw...@gmail.com wrote: > > new to django. so i have an app that displays an html page. i also have a > menu on that page that will load up other html pages. > however, when i add the path to urls.py and then the class def in views

Re: help with URLS.PY

2019-05-03 Thread Rob W
It does not, I changed the name, stil the same error > On May 2, 2019, at 8:23 PM, Abishek Goda wrote: > > > Hi, > >> >> As I said, the dashboard.html works, i just want another menu option to load >> the other html file. i have commented this out as it causes my app to break. > So the iss

Re: help with URLS.PY

2019-05-02 Thread Abishek Goda
Hi, > > As I said, the dashboard.html works, i just want another menu option to load > the other html file. i have commented this out as it causes my app to break. So the issue is with the map url. Can you try to use a different name? > > #path('map/', Map.as_view(), name='map'),

Re: help with URLS.PY

2019-05-02 Thread Chetan Ganji
The line path('', HomeView.as_view(), name='home'), Change it to below and try again. path(''", HomeView.as_view(), name='home'), On May 3, 2019 2:52 AM, wrote: new to django. so i have an app that displays an html page. i also have a menu on that page that will load up other html pages. howev

help with URLS.PY

2019-05-02 Thread randmwheeler
new to django. so i have an app that displays an html page. i also have a menu on that page that will load up other html pages. however, when i add the path to urls.py and then the class def in views, it fails. i know it's something simple, what am i missing. As I said, the dashboard.html works