{% extends "/columns.html" %} {% block "title" %}Tag ${tag_name}{% endblock %} {% block css %} .tag-link-${tag_name} { font-weight:bold; } {% endblock %} {% block "column" %}
This tag is undocumented. Please encourage the author to provide documentation!
{%- endif %} {%- def "param_table" %} {%- if params %}name | purpose | type | required? | default | choices |
---|---|---|---|---|---|
${param.name} |
${param.doc} | ${param.type} | {% if param.required %}Yes{% else %}No{% endif %} | {% if not param.required and param.default_display %}${param.default_display} {% endif %} |
{%- if param.choices %}
{%- for choice in sorted:param.choices %}
${choice} {%- endfor %} {%- endif %} |