mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-20 21:54:58 -04:00
20 lines
501 B
Handlebars
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>
|