Skip to content
Snippets Groups Projects
Commit 0378fb68 authored by Nigel Kukard's avatar Nigel Kukard
Browse files

Added 2 more icons to webui to display user status

parent 1ac7eb1a
No related branches found
No related tags found
No related merge requests found
...@@ -91,8 +91,10 @@ EOF ...@@ -91,8 +91,10 @@ EOF
my $style = ""; my $style = "";
my $icon = ""; my $icon = "";
if ($user->{'Status'} eq "offline") { if ($user->{'Status'} eq "offline") {
$icon = '<i class="icon-trash"></i>';
$style = "warning"; $style = "warning";
} elsif ($user->{'Status'} eq "new") { } elsif ($user->{'Status'} eq "new") {
$icon = '<i class="icon-plus"></i>';
$style = "info"; $style = "info";
} elsif ($user->{'Status'} eq "conflict") { } elsif ($user->{'Status'} eq "conflict") {
$icon = '<i class="icon-random"></i>'; $icon = '<i class="icon-random"></i>';
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment