私はブログアプリケーションを持っており、アプリケーションには汎用ビューを含む urls.py があります
urlpatterns = patterns("",
url(r'^', ListView.as_view(
queryset=Post.objects.all().order_by("-created")[:2],
template_name='index.html')),
)
2 データを送信します。
そのようなメインプロジェクトurls.pyで:
urlpatterns = patterns("",
url(r"^$", direct_to_template, {"template": "index.html"}, name="home"),
url(r"^admin/", include(admin.site.urls)),
url(r"^blog/", include('blog.urls')),
)
db 127.0.0.1/blog/ から取得したデータを見ることができます。 127.0.0.1 でも見たいと思います。つまり、スタート ページです。これを追加します:
url(r"^$", include('blog.urls), direct_to_template, {"template": "index.html"}, name="home"),
しかし、うまくいきません。どうすればこれを達成できますか?