mirror of
https://github.com/Sonarr/Sonarr
synced 2024-12-26 01:37:07 +00:00
Added season and episode number to episode details
SInce FullCalendar requires the title property this also support episodeTitle as the episode name displayed
This commit is contained in:
parent
41baecc2ee
commit
f3534de0c5
1 changed files with 6 additions and 1 deletions
|
@ -1,7 +1,12 @@
|
||||||
<div class="episode-detail-modal">
|
<div class="episode-detail-modal">
|
||||||
<div class="modal-header">
|
<div class="modal-header">
|
||||||
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
|
||||||
<h3>{{title}}</h3>
|
|
||||||
|
{{#if episodeTitle}}
|
||||||
|
<h3>{{episodeTitle}} - {{seasonNumber}}x{{paddedEpisodeNumber}}</h3>
|
||||||
|
{{else}}
|
||||||
|
<h3>{{title}} - {{seasonNumber}}x{{paddedEpisodeNumber}}</h3>
|
||||||
|
{{/if}}
|
||||||
</div>
|
</div>
|
||||||
<div class="modal-body">
|
<div class="modal-body">
|
||||||
<ul class="nav nav-tabs" id="myTab">
|
<ul class="nav nav-tabs" id="myTab">
|
||||||
|
|
Loading…
Reference in a new issue