Merge pull request #4596 from mikma/routes-proto
luci-mod-status: routes.js: add route protocol
This commit is contained in:
commit
61c2361170
1 changed files with 6 additions and 3 deletions
|
@ -135,7 +135,8 @@ return view.extend({
|
|||
dest,
|
||||
(v6 ? flags.from : flags.via) || '-',
|
||||
String(flags.metric || 0),
|
||||
flags.table || 'main'
|
||||
flags.table || 'main',
|
||||
flags.proto,
|
||||
]);
|
||||
}
|
||||
|
||||
|
@ -163,7 +164,8 @@ return view.extend({
|
|||
E('div', { 'class': 'th' }, [ _('Target') ]),
|
||||
E('div', { 'class': 'th' }, [ _('IPv4-Gateway') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Metric') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Table') ])
|
||||
E('div', { 'class': 'th' }, [ _('Table') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Protocol') ]),
|
||||
])
|
||||
]);
|
||||
|
||||
|
@ -181,7 +183,8 @@ return view.extend({
|
|||
E('div', { 'class': 'th' }, [ _('Target') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Source') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Metric') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Table') ])
|
||||
E('div', { 'class': 'th' }, [ _('Table') ]),
|
||||
E('div', { 'class': 'th' }, [ _('Protocol') ]),
|
||||
])
|
||||
]);
|
||||
|
||||
|
|
Loading…
Reference in a new issue