mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-25 22:59:10 -04:00
handlebar templates are now .hbs instead of .html
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user