mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-22 19:44:02 +08:00
18 lines
397 B
Plaintext
18 lines
397 B
Plaintext
{%- macro publish_status(type) %}
|
|
{% if type == 1 %}
|
|
审核中
|
|
{% elseif type == 2 %}
|
|
已发布
|
|
{% elseif type == 3 %}
|
|
未通过
|
|
{% else %}
|
|
未知
|
|
{% endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro tags_info(items) %}
|
|
{% for item in items %}
|
|
{% set comma = loop.last ? '' : ',' %}
|
|
{{ item.name ~ comma }}
|
|
{% endfor %}
|
|
{%- endmacro %} |