1
0
Fork 0
mirror of https://github.com/Radarr/Radarr synced 2025-03-01 01:16:14 +00:00
Radarr/UI/System/Update/UpdateItemViewTemplate.html
2013-09-30 22:30:02 -07:00

23 lines
671 B
HTML

<div class="update">
<fieldset>
<legend>{{version}} <span class="date">- {{ShortDate releaseDate}} {{currentVersion version}}</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>