Django Book 翻译
菜单>:
TOC
返回
原文:
If you write a template library that isnt tied to any particular models/views, its valid and quite normal to have a Django application package that contains only a ``templatetags`` package. Theres no limit on how many modules you put in the ``templatetags`` package. Just keep in mind that a ``{% load %}`` statement will load tags/filters for the given Python module name, not the name of the application.
翻译:
如果你写了一个不和任何模型/视图关联的模板库,那么得到一个仅包含 ``templatetags`` 包的Django应用程序包是完全正常的。对于在 ``templatetags`` 包中放置多少个模块没有做任何的限制。需要了解的是: ``{% load %}`` 语句会为指定的Python模块名(而非应用程序名)加载标签或过滤器。
备注:
译者: