Django中的不同頁面的特定模板鏈接可能嗎?Django的頁面特定模板
例如:
/about/ -> templates/flatpages/about.html
/contact/ -> templates/flatpages/contact.html
這是我有什麼,但所有這些網頁指向default.html和模板
url(r'^(?P<url>about/)$', 'django.contrib.flatpages.views.flatpage'),
url(r'^(?P<url>contact/)$', 'django.contrib.flatpages.views.flatpage'),
url(r'^(?P<url>feedback/)$', 'django.contrib.flatpages.views.flatpage'),
這是不可能做到這一點的管理 - 我認爲功能是去除我怎樣才能做到這一點編程 – Eeyore 2009-11-08 06:18:36
獲取簡單頁面你慾望(在Flatpages.object中搜索title =「about」等),將它的'template_name'屬性設置爲你想要的值(「fla tpages/about.html「等),保存它。就像我說的,就像其他任何模型一樣! – 2009-11-08 15:29:46