{% extends "layout.html" %} {% block content_header %} {{ build_breadcrumb(_('Sound Files System'), '', 'file-sound-o', [_('List'), sound['name']]) }} {% endblock %} {% block content %}
{% call build_list_containers(_('Sound Files System'), 'file-sound-o') %} {% call build_table(id='table-list-sound-files-system') %} {% call build_list_table_headers() %} {{ _('Name') }} {{ _('Infos') }} {% endcall %} {% call(file_) build_list_table_rows(sound['files']) %} {{ file_.name }} {{ file_.format }} {% for format in file_.formats %}
{{ _('Format') }}: {{ format['format'] if format['format'] else '-' }} {{ _('Language') }}: {{ format['language'] if format['language'] else '-' }}
{{ _('Text') }}: {{ format['text'] if format['text'] else '-' }}
{% endfor %} {% endcall %} {% endcall %} {% endcall %}
{% endblock %} {% block additional_js %} {% endblock %}