Show publication date and the not truncated title

This commit is contained in:
tcely 2025-02-13 06:10:49 -05:00 committed by GitHub
parent 78434ca522
commit 18ba5c4424
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -70,6 +70,10 @@
<td class="hide-on-small-only">Duration</td> <td class="hide-on-small-only">Duration</td>
<td><span class="hide-on-med-and-up">Duration<br></span><strong>{{ media.duration_formatted }}</strong></td> <td><span class="hide-on-med-and-up">Duration<br></span><strong>{{ media.duration_formatted }}</strong></td>
</tr> </tr>
<tr title="The media publication date">
<td class="hide-on-small-only">Published</td>
<td><span class="hide-on-med-and-up">Published<br></span><strong>{{ media.published |date:'Y-m-d H:i:s' }}</strong></td>
</tr>
<tr title="The desired format"> <tr title="The desired format">
<td class="hide-on-small-only">Desired format</td> <td class="hide-on-small-only">Desired format</td>
<td><span class="hide-on-med-and-up">Desired format<br></span><strong>{{ media.source.format_summary }}</strong></td> <td><span class="hide-on-med-and-up">Desired format<br></span><strong>{{ media.source.format_summary }}</strong></td>
@ -78,6 +82,10 @@
<td class="hide-on-small-only">Fallback</td> <td class="hide-on-small-only">Fallback</td>
<td><span class="hide-on-med-and-up">Fallback<br></span><strong>{{ media.source.get_fallback_display }}</strong></td> <td><span class="hide-on-med-and-up">Fallback<br></span><strong>{{ media.source.get_fallback_display }}</strong></td>
</tr> </tr>
<tr title="The media title">
<td class="hide-on-small-only">Title</td>
<td><span class="hide-on-med-and-up">Title<br></span><strong>{{ media.title }}</strong></td>
</tr>
{% if not media.source.download_media %} {% if not media.source.download_media %}
<tr title="Is media marked to be downloaded at the source?"> <tr title="Is media marked to be downloaded at the source?">
<td class="hide-on-small-only">Source download?</td> <td class="hide-on-small-only">Source download?</td>