Files
RootPanel/plugin/mysql/view/widget.jade
2014-07-20 02:06:10 +08:00

24 lines
667 B
Plaintext

header MySQL
.col-md-6
.panel.panel-warning
.panel-heading
h3.panel-title 设置 MySQL 密码
.panel-body
.input-group#mysql-input
input.form-control(type='password')
span.input-group-btn
button.btn.btn-default(type='button') 提交
.col-md-6
table(style= 'table-layout: fixed;').table.table-hover
thead
tr
td(style= 'width: 200px;') 数据库
td 体积
td 磁盘占用
tbody
for db in dbs
tr
td(style= 'white-space: nowrap; overflow: hidden;', title= db.name)= db.name
td #{db.size.toFixed(1)}M
td #{(db.size + db.free).toFixed(1)}M