mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-04-26 00:52:28 +00:00
30 lines
671 B
JavaScript
30 lines
671 B
JavaScript
'use strict';
|
|
|
|
const Mn = require('backbone.marionette');
|
|
const ItemView = require('./item');
|
|
const template = require('./main.ejs');
|
|
|
|
const TableBody = Mn.CollectionView.extend({
|
|
tagName: 'tbody',
|
|
childView: ItemView
|
|
});
|
|
|
|
module.exports = Mn.View.extend({
|
|
tagName: 'table',
|
|
className: 'table table-hover table-outline table-vcenter text-nowrap card-table',
|
|
template: template,
|
|
|
|
regions: {
|
|
body: {
|
|
el: 'tbody',
|
|
replaceElement: true
|
|
}
|
|
},
|
|
|
|
onRender: function () {
|
|
this.showChildView('body', new TableBody({
|
|
collection: this.collection
|
|
}));
|
|
}
|
|
});
|