mirror of
https://github.com/rr-/szurubooru.git
synced 2025-07-17 08:26:24 +00:00
17 lines
332 B
JavaScript
17 lines
332 B
JavaScript
'use strict';
|
|
|
|
const BaseView = require('./base_view.js');
|
|
|
|
class UserEditView extends BaseView {
|
|
constructor() {
|
|
super();
|
|
this.template = this.getTemplate('user-edit-template');
|
|
}
|
|
|
|
render(options) {
|
|
options.target.innerHTML = this.template(options.user);
|
|
}
|
|
}
|
|
|
|
module.exports = UserEditView;
|