Django Book 翻译
菜单>:
TOC
返回
原文:
Many template tags take a single argumenta string or a template variable referenceand return a string after doing some processing based solely on the input argument and some external information. For example, the ``current_time`` tag we wrote earlier is of this variety. We give it a format string, and it returns the time as a string.
翻译:
许多模板标签接收单一的字符串参数或者一个模板变量 引用,然后独立地根据输入变量和一些其它外部信息进行处理并返回一个字符串. 例如, 我们先前写的 ``current_time`` 标签就是这样一个例子. 我们给它格式字符串, 然后它把时间作为字符串返回.
备注:
译者: