如何在django中没有任何视图的情况下调用html模板

时间:2017-09-16 08:44:57

标签: python django django-templates

我想在不调用任何视图的情况下将index.html模板调用到特定网址。

有可能在django吗?

1 个答案:

答案 0 :(得分:5)

from django.views.generic import TemplateView

urlpatterns = [
     (r'^home/$', TemplateView.as_view(template_name='index.html')),
]