Django Book 翻译
菜单>:
TOC
返回
原文:
This means you can store templates with your individual applications, making it easy to distribute Django applications with default templates. For example, if ``INSTALLED_APPS`` contains ``('myproject.polls', 'myproject.music')`` , then ``get_template('foo.html')`` will look for templates in this order:
翻译:
这意味着你可以把模板和你的应用一起保存,从而使得Django应用更容易和默认模板一起发布。例如,如果 ``INSTALLED_APPS`` 包含 ``('myproject.polls','myproject.music')`` ,那么 ``get_template('foo.html')`` 会按这个顺序查找模板:
备注:
译者: