{% if item.other_title %}
{% trans '别名:' %}
{% for other_title in item.other_title %}
5 %}style="display: none;"{% endif %}>
{{ other_title }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% if item.other_title|length > 5 %}
{% trans '更多' %}
{% endif %}
{% endif %}
{% if item.genre %}
{% trans '类型:' %}
{% for genre in item.genre %}
{{ genre }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.developer %}
{% trans '开发商:' %}
{% for developer in item.developer %}
{{ developer }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.publisher %}
{% trans '发行商:' %}
{% for publisher in item.publisher %}
{{ publisher }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}
{% if item.release_date %}
{% trans '发行日期:' %}{{ item.release_date }}
{% endif %}
{% if item.official_site %}
{% trans '官方网站:' %}{{ item.official_site|urlizetrunc:24 }}
{% endif %}
{% if item.platform %}
{% trans '平台:' %}
{% for platform in item.platform %}
{{ platform }}
{% if not forloop.last %}/{% endif %}
{% endfor %}
{% endif %}