1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00
Files
Sonarr/src/UI/System/Update/UpdateItemViewTemplate.html
T
2014-06-18 17:15:54 -07:00

35 lines
990 B
HTML

<div class="update">
<fieldset>
<legend>{{version}}
<span class="date">
- {{ShortDate releaseDate}}
</span>
{{#if installed}}
<span class="update-installed"><i class="icon-ok" title="Installed"></i></span>
{{/if}}
{{#if isUpgrade}}
<span class="label label-default install-update x-install-update">Install</span>
{{/if}}
</legend>
{{#with changes}}
{{#each new}}
<div class="change">
<span class="label label-success">New</span> {{this}}
</div>
{{/each}}
{{#each fixed}}
<div class="change">
<span class="label label-info">Fixed</span> {{this}}
</div>
{{/each}}
{{/with}}
{{#unless changes}}
Maintenance release
{{/unless}}
</fieldset>
</div>