以前一直以为render_to_response的template参数只能是一个模板字符串,今天在发现他可以从多个模板中查找。
render_to_response中template可以是一个list,如:
return render_to_response(["1.html","2.html","3.html"])
它会按照list里面的先后顺序来查找,如果存在对应的模板即停止查找,使用找到的模板。
django如果自定义admin的template好像就是这样找的吧,
render_to_response(["admin/%s/%s/change_form.html" % (app_label,opts.object_name.lower()),
"admin/%s/change_form.html" % app_label,
"admin/change_form.html"], context_instance=context)
阅读(2086) | 评论(0) | 转发(0) |