1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2025-03-05 15:15:59 +02:00
Sonarr/UI/Settings/Notifications/ItemTemplate.html

24 lines
727 B
HTML
Raw Normal View History

2013-06-25 17:34:33 -07:00
<div class="notification-item">
<div>
<h3>{{name}}</h3>
<span class="btn-group pull-right">
2013-06-28 17:51:46 -07:00
<button class="btn btn-mini btn-icon-only x-edit"><i class="icon-nd-edit"/></button>
<button class="btn btn-mini btn-icon-only x-delete"><i class="icon-nd-delete"/></button>
2013-06-25 17:34:33 -07:00
</span>
</div>
2013-06-27 18:55:45 -07:00
<div class="settings">
2013-06-25 17:34:33 -07:00
{{#if onGrab}}
<span class="label label-success">On Grab</span>
{{else}}
<span class="label">On Grab</span>
{{/if}}
{{#if onDownload}}
<span class="label label-success">On Download</span>
{{else}}
<span class="label">On Download</span>
{{/if}}
</div>
</div>