mirror of
https://github.com/HackPlan/RootPanel.git
synced 2026-03-27 22:44:32 +08:00
27 lines
783 B
Plaintext
27 lines
783 B
Plaintext
header SSH
|
|
.col-md-6
|
|
.panel.panel-warning
|
|
.panel-heading
|
|
h3.panel-title 设置 SSH 密码
|
|
.panel-body
|
|
.input-group#ssh-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: 250px;') 进程
|
|
td 内存
|
|
td CPU
|
|
td 操作
|
|
tbody
|
|
for process in plist
|
|
tr(data-id= '#{process.pid}')
|
|
td(style= 'white-space: nowrap; overflow: hidden;', title= process.command)= process.command
|
|
td #{(process.rss / 1024).toFixed(1)}M
|
|
td #{process.cpu_per}%
|
|
td
|
|
button.btn-kill.btn.btn-danger.btn-xs Kill
|