diff options
author | Scott Ullrich <sullrich@pfsense.org> | 2009-10-14 00:31:49 -0400 |
---|---|---|
committer | Scott Ullrich <sullrich@pfsense.org> | 2009-10-14 00:31:49 -0400 |
commit | cdc85416308c7c027dd6b31bf92315f231104858 (patch) | |
tree | 955719af610894c737b7a85f8736dfcc114da2ae | |
parent | 65081863d9085089aec24347478860801a72abc1 (diff) | |
download | pfsense-packages-cdc85416308c7c027dd6b31bf92315f231104858.tar.gz pfsense-packages-cdc85416308c7c027dd6b31bf92315f231104858.tar.bz2 pfsense-packages-cdc85416308c7c027dd6b31bf92315f231104858.zip |
Add stats uri to column listing
-rwxr-xr-x | config/haproxy/haproxy_backends.php | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/config/haproxy/haproxy_backends.php b/config/haproxy/haproxy_backends.php index 48e09f05..4f50c337 100755 --- a/config/haproxy/haproxy_backends.php +++ b/config/haproxy/haproxy_backends.php @@ -101,20 +101,24 @@ include("head.inc"); <table class="tabcont" width="100%" border="0" cellpadding="0" cellspacing="0"> <tr> <td width="30%" class="listhdrr">Name</td> - <td width="50%" class="listhdrr">Description</td> + <td width="40%" class="listhdrr">Description</td> + <td width="10%" class="listhdrr">Stats URI</td> <td width="10%" class="listhdrr">Type</td> <td width="10%" class="list"></td> </tr> <?php $i = 0; foreach ($a_backend as $backend): ?> <tr> <td class="listlr" ondblclick="document.location='haproxy_backends_edit.php?id=<?=$i;?>';"> - <?=$backend['name'];?> + <?=$backend['name'];?> </td> <td class="listlr" ondblclick="document.location='haproxy_backends_edit.php?id=<?=$i;?>';"> - <?=$backend['desc'];?> + <?=$backend['desc'];?> </td> + <td class="listlr" ondblclick="document.location='haproxy_backends_edit.php?id=<?=$i;?>';"> + <?=$backend['stats_uri'];?> + </td> <td class="listlr" ondblclick="document.location='haproxy_backends_edit.php?id=<?=$i;?>';"> - <?=$backend['type'];?> + <?=$backend['type'];?> </td> <td class="list" nowrap> <table border="0" cellspacing="0" cellpadding="1"> |