mirror of
https://github.com/Radarr/Radarr
synced 2026-05-03 20:31:08 +02:00
* added YouTubeTrailerId to movie model * db migration for new column * added videos to append_to_response for tmdb * increased height of .series-posters-item * new handlebar helper to build the trailer url
16 lines
493 B
Handlebars
16 lines
493 B
Handlebars
<span class="series-info-links">
|
|
<!--<a href="{{traktUrl}}" class="label label-info">Trakt</a>-->
|
|
{{#if website}}
|
|
<a href="{{homepage}}" class="label label-info">Homepage</a>
|
|
{{/if}}
|
|
<a href="{{tmdbUrl}}" class="label label-info">The Movie DB</a>
|
|
|
|
{{#if imdbId}}
|
|
<a href="{{imdbUrl}}" class="label label-info">IMDB</a>
|
|
{{/if}}
|
|
|
|
{{#if youTubeTrailerId}}
|
|
<a href="{{youTubeTrailerUrl}}" class="label label-info">Trailer</a>
|
|
{{/if}}
|
|
|
|
</span>
|