mirror of
https://gitee.com/koogua/course-tencent-cloud.git
synced 2025-06-23 03:50:56 +08:00
23 lines
436 B
Plaintext
23 lines
436 B
Plaintext
{%- macro source_type(type) %}
|
|
{% if type == 1 %}
|
|
原创
|
|
{% elseif type == 2 %}
|
|
转载
|
|
{% elseif type == 3 %}
|
|
翻译
|
|
{% else %}
|
|
N/A
|
|
{% endif %}
|
|
{%- endmacro %}
|
|
|
|
{%- macro publish_status(type) %}
|
|
{% if type == 1 %}
|
|
审核中
|
|
{% elseif type == 2 %}
|
|
已发布
|
|
{% elseif type == 3 %}
|
|
未通过
|
|
{% else %}
|
|
N/A
|
|
{% endif %}
|
|
{%- endmacro %} |