Radarr/src/UI/System/Update/UpdateItemViewTemplate.html
2013-10-06 15:22:43 -07:00

32 lines
967 B
HTML

<div class="update">
<fieldset>
<legend>{{version}}
<span class="date">
- {{ShortDate releaseDate}}
{{#if installed}}<i class="icon-ok" title="Installed"></i>{{/if}}
{{#if_windows}}
{{#if isUpgrade}}<span class="label label-inverse install-update x-install-update">Install</span>{{/if}}
{{/if_windows}}
</span>
</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}}
No notable changes
{{/unless}}
</fieldset>
</div>