{% if item.rating and item.rating_number >= 5 %}
{{ item.rating }}
({{ item.rating_number }}人评分)
{% else %}
{% trans '评分:评分人数不足' %}
{% endif %}
{% 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.other_info %}
{% for k, v in item.other_info.items %}
{{ k }}:{{ v | urlize }}
{% endfor %}
{% endif %}
{% if item.platform %}{% trans '平台:' %}
{% for platform in item.platform %}
{{ platform }}{% if not forloop.last %} / {% endif %}
{% endfor %}
{% endif %}
{% if item.last_editor and item.last_editor.preference.show_last_edit or user.is_staff %}