1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/UI/Episode/Summary/ViewTemplate.html

30 lines
718 B
HTML
Raw Normal View History

<div class="episode-overview">
{{overview}}
</div>
<div class="episode-file-info">
{{#if episodeFile}}
2013-06-07 03:52:45 +03:00
{{#with episodeFile}}
<table class="table table-bordered">
<thead>
<tr>
<th>Path</th>
<th>Size</th>
<th>Quality</th>
</tr>
</thead>
<tbody>
<tr>
<td>{{path}}</td>
2013-06-25 07:43:16 +03:00
<td>{{Byte size}}</td>
2013-06-07 03:52:45 +03:00
<td>{{quality.quality.name}}</td>
</tr>
</tbody>
</table>
{{/with}}
{{else}}
2013-06-07 03:52:45 +03:00
<p class="text-warning">
No file available for this episode.
</p>
{{/if}}
</div>