我在座标上的模板结构如下:
templates/
app/
model1/
model1_form.html
model2/
model2_form.html
采用模型1和通用清单词表,现在仅搜索模板/app/model1_form.html。 难道我可以告诉 d干,他也应该找回 app子。 我不想手工确定模板名称和路径(template_name=“templates/app/model1/model1_form.html”
)。
在环境中。 py I have:
import os.path
BASE_PATH = os.path.dirname(os.path.dirname(__file__))
TEMPLATE_DIRS = (
BASE_PATH+ /templates/ ,
)
我认为:
class HousesListView(ListView):
model = House
context_object_name = "house_list"
提前感谢!