标签: python django django-templates
我想在不调用任何视图的情况下将index.html模板调用到特定网址。
index.html
有可能在django吗?
答案 0 :(得分:5)
from django.views.generic import TemplateView urlpatterns = [ (r'^home/$', TemplateView.as_view(template_name='index.html')), ]