[Vue-Django] root urls

JeongChaeJin·2022년 9월 7일
0

Vue-Django

목록 보기
6/14

HomeView

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

    path('', HomeView.as_view(), name='home'),
    path('todo/', include('todo.urls')),
]
  • root path는 HomView를 통해 작성 가능
from django.views.generic import TemplateView


class HomeView(TemplateView):
    template_name = 'home.html'
  • main Page에 대한 view는 project directory의 view에 작성하면 된다.
profile
OnePunchLotto

0개의 댓글