2012-06-06 53 views
0

我有一個博客應用程序和應用程序有一個urls.py,其中包括通用視圖怎麼能發送blog.urls我的主要

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')), 

) 

我可以看到從數據庫中檢索DATAS 127.0.0.1/blog/我也想看看在127.0.0.1我的意思是在開始頁。 我加這個:

url(r"^$", include('blog.urls), direct_to_template, {"template": "index.html"}, name="home"), 

但是不行。我怎樣才能做到這一點?

+0

我覺得'url(r「^ $」,include('blog.urls))'就夠了。 –

回答

0

這應該工作,似乎你已經錯過了關於你的urls.py的單引號關閉,我使用這個,它工作正常。

(r'^$',process.internal.views.HomePage.as_view(template_name='homepage.html')), 
+0

需要導入'process'? –

+0

嘿多數民衆贊成我的項目名稱...不要擔心... –

+0

和'template_name ='homepage.html','後面的空格表示?我只是在開玩笑.......我認爲你的答案應該可行... –

相關問題