1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-21 22:05:38 -04:00
Files
Sonarr/src/UI/Settings/Notifications/NotificationItemViewTemplate.hbs
T

20 lines
526 B
Handlebars

<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>