lib.itmens/journal/templates/list_item_podcast.html
2023-02-01 22:55:26 -05:00

16 lines
270 B
HTML

{% extends "list_item_base.html" %}
{% load i18n %}
{% load highlight %}
{% block info %}
{% if item.genre %}{% trans '类型' %}:
{{ item.genre|join:" / "}}
{% endif %}
{% if item.genre %}{% trans '主播' %}:
{{ item.hosts|join:" / "}}
{% endif %}
{% endblock %}