1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-20 00:11:46 +02:00
Radarr/UI/Settings/Notifications/ItemTemplate.html

24 lines
727 B
HTML
Raw Normal View History

2013-06-26 02:34:33 +02:00
<div class="notification-item">
<div>
<h3>{{name}}</h3>
<span class="btn-group pull-right">
2013-06-29 02:51:46 +02: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-26 02:34:33 +02:00
</span>
</div>
2013-06-28 03:55:45 +02:00
<div class="settings">
2013-06-26 02:34:33 +02: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>