mirror of
https://github.com/Sonarr/Sonarr.git
synced 2024-11-01 00:12:30 +01:00
22 lines
544 B
JavaScript
22 lines
544 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'handlebars',
|
|
'Quality/QualityProfileCollection',
|
|
'underscore'
|
|
], function (Handlebars, QualityProfileCollection, _) {
|
|
|
|
Handlebars.registerHelper('qualityProfile', function (profileId) {
|
|
|
|
var profile = QualityProfileCollection.get(profileId);
|
|
|
|
if (profile) {
|
|
return new Handlebars.SafeString('<span class="label quality-profile-label">' + profile.get("name") + '</span>');
|
|
}
|
|
|
|
return undefined;
|
|
|
|
});
|
|
|
|
});
|