You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Lidarr/src/UI/Settings/Metadata/MetadataItemViewTemplate.hbs

24 lines
650 B

<div class="metadata-item">
<div>
<h3>{{implementationName}}</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>