1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-20 21:54:58 -04:00
Files
Sonarr/src/UI/Settings/Notifications/NotificationItemViewTemplate.hbs
T
Keivan Beigi c472d8fe96 stripBom
2015-01-29 17:14:38 -08:00

20 lines
501 B
Handlebars

<div class="notification-item thingy">
<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>