mirror of
https://github.com/key-networks/ztncui.git
synced 2025-06-06 02:03:45 +02:00
Trivial changes (table width etc.)
This commit is contained in:
parent
d6aa0e209f
commit
0b36f83b34
1 changed files with 11 additions and 11 deletions
|
@ -11,36 +11,36 @@ block content
|
|||
if error
|
||||
b #{error}
|
||||
else
|
||||
|
||||
table.table.table-responsive.table-striped.table-hover
|
||||
tr
|
||||
th(width='3%')
|
||||
= ''
|
||||
th(width='20%')
|
||||
| Network name
|
||||
th(width='10%')
|
||||
| Network ID
|
||||
th(width='15%')
|
||||
= ''
|
||||
th(width='20%')
|
||||
| Network ID
|
||||
th(width='8%')
|
||||
= ''
|
||||
th(width='25%')
|
||||
th(width='12%')
|
||||
= ''
|
||||
th(width='37%')
|
||||
= ''
|
||||
each network in networks
|
||||
- const nwurl = '/controller/network/' + network.nwid;
|
||||
tr
|
||||
td
|
||||
a(href='/controller/network/' + network.nwid + '/delete')
|
||||
a(href=nwurl + '/delete')
|
||||
i.glyphicon.glyphicon-trash
|
||||
td
|
||||
a(href='/controller/network/' + network.nwid) #{network.name}
|
||||
a(href=nwurl) #{network.name}
|
||||
td
|
||||
= network.nwid
|
||||
td
|
||||
a(href='/controller/network/' + network.nwid + "#detail") detail
|
||||
a(href=nwurl) detail
|
||||
td
|
||||
a(href='/controller/network/' + network.nwid + '/easy') easy setup
|
||||
a(href=nwurl + '/easy') easy setup
|
||||
td
|
||||
a(href='/controller/network/' + network.nwid + "#members") members
|
||||
a(href=nwurl + "#members") members
|
||||
|
||||
else
|
||||
.alert.alert-info
|
||||
|
|
Loading…
Add table
Reference in a new issue