You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm a noob trying to get this scheduler to work. I followed all the instructions to configure settings.py and have the url pattern redirect to use the urls.py file inside the 'schedule' app folder with the following code:
urlpatterns = patterns('',
(r'^schedule/', include('schedule.urls')),
)
However, nothing is showing up. I don't see any errors or additional information. When I go to http://localhost:8000/schedule/, a blank page shows up. The strange thing is if I go to http://localhost:8000/schedule/1234 or any random parameter, I get the same blank page. I'm assuming that Django is not seeing my urls path properly. Can someone please help me?
The text was updated successfully, but these errors were encountered:
I'm a noob trying to get this scheduler to work. I followed all the instructions to configure settings.py and have the url pattern redirect to use the urls.py file inside the 'schedule' app folder with the following code:
urlpatterns = patterns('',
(r'^schedule/', include('schedule.urls')),
)
However, nothing is showing up. I don't see any errors or additional information. When I go to http://localhost:8000/schedule/, a blank page shows up. The strange thing is if I go to http://localhost:8000/schedule/1234 or any random parameter, I get the same blank page. I'm assuming that Django is not seeing my urls path properly. Can someone please help me?
The text was updated successfully, but these errors were encountered: