Django Book 翻译
菜单>:
TOC
返回
原文:
Create two empty files in the ``templatetags`` directory: an ``__init__.py`` file (to indicate to Python that this is a package containing Python code) and a file that will contain your custom tag/filter definitions. The name of the latter file is what youll use to load the tags later. For example, if your custom tags/filters are in a file called ``poll_extras.py`` , youd write the following in a template:
翻译:
在 ``templatetags`` 中创建两个空文件:一个 ``__init__.py`` (告诉Python这是 一个包含了Python代码的包)和一个用来存放你自定义的标签/过滤器定义的文件。第二个文件 的名字稍后将用来加载标签。例如,如果你的自定义标签/过滤器在一个叫作 ``poll_extras.py`` 的文件中,你需要在模板中写入如下内容:
备注:
译者: