feat(playlist): enhance display and action buttons for entries
Added internationalization tags around 'Playlist' and 'Video' labels to ensure consistent localization. Introduced a conditional check for playlist entries to display a 'View playlist' button instead of the 'Download' and 'More options' buttons, which now only appear for non-playlist entries. This enhances user navigation and better differentiates between playlists and individual videos.
This commit is contained in:
parent
2b40b1b786
commit
2328f25a20
1 changed files with 12 additions and 5 deletions
|
@ -23,18 +23,25 @@
|
||||||
{/strip}">
|
{/strip}">
|
||||||
{if !isset($entry->title)}
|
{if !isset($entry->title)}
|
||||||
{if $entry->ie_key == YoutubePlaylist}
|
{if $entry->ie_key == YoutubePlaylist}
|
||||||
Playlist
|
{t}Playlist{/t}
|
||||||
{else}
|
{else}
|
||||||
Video
|
{t}Video{/t}
|
||||||
{/if}
|
{/if}
|
||||||
{else}
|
{else}
|
||||||
{$entry->title}
|
{$entry->title}
|
||||||
{/if}
|
{/if}
|
||||||
</a>
|
</a>
|
||||||
</h3>
|
</h3>
|
||||||
|
{if $entry->_type == 'playlist'}
|
||||||
|
<p class="playlist-entry-description">
|
||||||
|
<a target="_blank" class="downloadBtn"
|
||||||
|
href="{path_for name="info"}?url={$entry->webpage_url}">{t}View playlist{/t}</a>
|
||||||
|
</p>
|
||||||
|
{else}
|
||||||
<a target="_blank" class="downloadBtn"
|
<a target="_blank" class="downloadBtn"
|
||||||
href="{path_for name="download"}?url={$entry->url}">{t}Download{/t}</a>
|
href="{path_for name="download"}?url={$entry->url}">{t}Download{/t}</a>
|
||||||
<a target="_blank" href="{path_for name="info"}?url={$entry->url}">{t}More options{/t}</a>
|
<a target="_blank" href="{path_for name="info"}?url={$entry->url}">{t}More options{/t}</a>
|
||||||
|
{/if}
|
||||||
</div>
|
</div>
|
||||||
{/foreach}
|
{/foreach}
|
||||||
{/block}
|
{/block}
|
||||||
|
|
Loading…
Reference in a new issue