mirror of
https://git.ugnet.gay/CrossTalk/azul.git
synced 2026-05-27 22:59:49 +00:00
16 lines
470 B
XML
16 lines
470 B
XML
<Category{% if extra %}{{ extra }}{% endif %}>
|
|
<CategoryID>{{ category.id }}</CategoryID>
|
|
<Locale>{{ locale }}</Locale>
|
|
{% if category.icon_url %}
|
|
<CategoryIconURL>{{ category.icon_url }}</CategoryIconURL>
|
|
{% else %}
|
|
<CategoryIconURL />
|
|
{% endif %}
|
|
<CategoryName>{{ category.name }}</CategoryName>
|
|
{% if category.description %}
|
|
<CategoryDescription>{{ category.description }}</CategoryDescription>
|
|
{% else %}
|
|
<CategoryDescription />
|
|
{% endif %}
|
|
</Category>
|