add display of error to columns

This commit is contained in:
Oliver Gorwits
2018-02-22 07:35:10 +00:00
parent b69ad22a52
commit b70af3cec7
3 changed files with 19 additions and 10 deletions

View File

@@ -163,6 +163,10 @@
<td>[% row.speed | html_entity %]</td>
[% END %]
[% IF params.c_error %]
<td>[% row.error_disable_cause | html_entity %]</td>
[% END %]
[% IF params.c_mac %]
<td>[% row.mac | html_entity %]</td>
[% END %]

View File

@@ -91,6 +91,10 @@
[% myport.push(row.speed) %]
[% END %]
[% IF params.c_error %]
[% myport.push(row.error_disable_cause) %]
[% END %]
[% IF params.c_mac %]
[% myport.push(row.mac) %]
[% END %]