Trivial changes (table width etc.)

This commit is contained in:
lideming 2021-02-18 12:28:05 +08:00
parent d6aa0e209f
commit 0b36f83b34

View file

@ -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