X-Git-Url: https://jfr.im/git/irc/unrealircd/unrealircd-webpanel.git/blobdiff_plain/729a16a01f065829389c31d23cdd7eedca752d0d..c06c1713af2db485d55a91073bbc5b63b6aa8c0b:/users/index.php diff --git a/users/index.php b/users/index.php index b172dcc..2e8cf75 100644 --- a/users/index.php +++ b/users/index.php @@ -1,7 +1,7 @@ user->modes, "B") !== false) ? ' Bot' : ""; echo "id."\">$user->name$isBot"; echo "".(isset($user->geoip->country_code) ? ' '.$user->geoip->country_code : "").""; - echo "".htmlspecialchars($user->hostname)." (".($user->hostname == $user->ip ? 'the same' : htmlspecialchars($user->ip ?? "None")).")"; + if ($user->hostname == $user->ip) + $hostip = $user->ip; + else if ($user->ip == null) + $hostip = $user->hostname; + else + $hostip = $user->hostname . " (".$user->ip.")"; + echo "".htmlspecialchars($hostip).""; $account = (isset($user->user->account)) ? "user->account."\">".htmlspecialchars($user->user->account)."" : 'None'; echo "".$account.""; $modes = (isset($user->user->modes)) ? "+" . $user->user->modes : ""; @@ -376,37 +382,50 @@ Click on a username to view more information. var width = window.innerWidth; var show_elements = ''; var hide_elements = ''; - //alert(width); if (width < 500) { show_elements = ''; hide_elements = '.hostname, .opercol, .uplinkcol, .securecol, .umodescol, .countrycol'; } else + if (width < 600) { - if (width < 900) - { - show_elements = '.countrycol'; - hide_elements = '.hostname, .opercol, .uplinkcol, .securecol, .umodescol'; - } else if (width < 1000) - { - show_elements = '.securecol, .umodescol, .countrycol'; - hide_elements = '.hostname, .uplinkcol, .opercol'; - } else if (width < 1200) - { - show_elements = '.opercol, .securecol, .umodescol, .countrycol'; - hide_elements = '.hostname, .uplinkcol'; - } else if (width < 1550) - { - show_elements = '.opercol, .uplinkcol, .securecol, .umodescol, .countrycol'; - hide_elements = '.hostname'; - } else if (width < 1750) - { - show_elements = '.hostname, .opercol, .securecol, .umodescol, .countrycol'; - hide_elements = '.uplinkcol'; - } else { - show_elements = '.hostname, .opercol, .uplinkcol, .securecol, .umodescol, .countrycol'; - hide_elements = ''; - } + show_elements = '.countrycol'; + hide_elements = '.hostname, .opercol, .uplinkcol, .securecol, .umodescol'; + } else + if (width < 700) + { + show_elements = '.umodescol, .countrycol'; + hide_elements = '.hostname, .opercol, .uplinkcol, .securecol'; + } else + if (width < 768) + { + show_elements = '.securecol, .umodescol, .countrycol'; + hide_elements = '.hostname, .opercol, .uplinkcol'; + } else + if (width < 875) + { + // left nav kicks in at 768+ so need to drop one column between 768..875 + show_elements = '.umodescol, .countrycol'; + hide_elements = '.hostname, .opercol, .uplinkcol, .securecol'; + } else if (width < 1000) + { + show_elements = '.securecol, .umodescol, .countrycol'; + hide_elements = '.hostname, .uplinkcol, .opercol'; + } else if (width < 1200) + { + show_elements = '.opercol, .securecol, .umodescol, .countrycol'; + hide_elements = '.hostname, .uplinkcol'; + } else if (width < 1550) + { + show_elements = '.opercol, .uplinkcol, .securecol, .umodescol, .countrycol'; + hide_elements = '.hostname'; + } else if (width < 1750) + { + show_elements = '.hostname, .opercol, .securecol, .umodescol, .countrycol'; + hide_elements = '.uplinkcol'; + } else { + show_elements = '.hostname, .opercol, .uplinkcol, .securecol, .umodescol, .countrycol'; + hide_elements = ''; } if (show_elements != '') @@ -457,4 +476,4 @@ Click on a username to view more information. }); - +