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, <randmwheeler@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, it fails. i know it's something simple, what am i missing.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.urls.pyfrom django.conf.urls import urlfrom django.contrib import adminfrom django.urls import pathfrom vr_reporting_app.views import HomeViewfrom vr_reporting_app.views import Mapurlpatterns = [path('', HomeView.as_view(), name='home'), #points to the view in views.py#path('map/', Map.as_view(), name='map'),path('admin/', admin.site.urls),]views.pyfrom django.shortcuts import renderfrom django.views.generic.base import TemplateViewclass HomeView(TemplateView):template_name = 'dashboard.html'class Map(TemplateView):template_name = 'map.html'--
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/8ef3e2d9-799e-4803-bd20-199300b373af%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
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+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at https://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/CAMKMUjv3M2J8by9hAcikBS4snG88R0mijmSeG-ms28p%2BRbOKnA%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.
No comments:
Post a Comment