我需要链接到索引页面上的一个按钮,以链接两个django模板,什么是最好的方法?我需要链接bis.html。这就是我设置的方式。
urls.py
urlpatterns = [
url(r'^admin/', admin.site.urls),
url(r'^$', HomeView.as_view()),
url(r'^$/bis', BisView.as_view()),
]
views.py
class HomeView(TemplateView):
template_name = 'index.html'
class BisView(TemplateView):
template_name = 'bis.html'
index.html
...
<li><a href="/bis">Bisection</a></li>
...