mirror of
https://github.com/xiaoxinpro/nginx-proxy-manager-zh.git
synced 2025-01-23 13:18:14 -05:00
30 lines
677 B
JavaScript
30 lines
677 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
|
||
|
}));
|
||
|
}
|
||
|
});
|