1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-20 21:55:03 -04:00

handlebar templates are now .hbs instead of .html

This commit is contained in:
kayone
2014-08-26 13:17:00 -07:00
parent 322ff2af8c
commit 5cfe2c0186
156 changed files with 3 additions and 3 deletions
@@ -0,0 +1,19 @@
<div class="notification-item thingy" title="Click to edit">
<div>
<h3>{{name}}</h3>
</div>
<div class="settings">
{{#if onGrab}}
<span class="label label-success">On Grab</span>
{{else}}
<span class="label label-default">On Grab</span>
{{/if}}
{{#if onDownload}}
<span class="label label-success">On Download</span>
{{else}}
<span class="label label-default">On Download</span>
{{/if}}
</div>
</div>