mirror of
https://github.com/Radarr/Radarr
synced 2025-12-23 08:44:49 +01:00
26 lines
682 B
JavaScript
26 lines
682 B
JavaScript
'use strict';
|
|
define(
|
|
[
|
|
'backbone',
|
|
'marionette',
|
|
'System/Info/About/AboutView',
|
|
'System/Info/DiskSpace/DiskSpaceLayout'
|
|
], function (Backbone,
|
|
Marionette,
|
|
AboutView,
|
|
DiskSpaceLayout) {
|
|
return Marionette.Layout.extend({
|
|
template: 'System/Info/SystemInfoLayoutTemplate',
|
|
|
|
regions: {
|
|
about : '#about',
|
|
diskSpace: '#diskspace'
|
|
},
|
|
|
|
onRender: function () {
|
|
this.about.show(new AboutView());
|
|
this.diskSpace.show(new DiskSpaceLayout());
|
|
}
|
|
});
|
|
});
|
|
|