1
0
mirror of https://github.com/Radarr/Radarr.git synced 2026-04-13 20:44:52 -04:00
Files
Radarr/src/UI/Settings/Metadata/MetadataItemViewTemplate.html
2014-06-12 15:19:32 -07:00

24 lines
661 B
HTML

<div class="metadata-item" title="Click to edit">
<div>
<h3>{{name}}</h3>
</div>
<div class="settings">
{{#if enable}}
<span class="label label-success">Enabled</span>
{{else}}
<span class="label label-default">Not Enabled</span>
{{/if}}
<hr>
{{#each fields}}
{{#if_eq type compare="checkbox"}}
{{#if value}}
<span class="label label-success">{{label}}</span>
{{else}}
<span class="label">{{label}}</span>
{{/if}}
{{/if_eq}}
{{/each}}
</div>
</div>