33 lines
938 B
HTML
33 lines
938 B
HTML
<div class="update">
|
|
<fieldset>
|
|
<legend>{{version}}
|
|
<span class="date">
|
|
- {{ShortDate releaseDate}}
|
|
{{#if installed}}<i class="icon-ok" title="Installed"></i>{{/if}}
|
|
|
|
{{#if isUpgrade}}
|
|
<span class="label label-default install-update x-install-update">Install</span>
|
|
{{/if}}
|
|
</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}}
|
|
Maintenance release
|
|
{{/unless}}
|
|
</fieldset>
|
|
</div>
|