summaryrefslogtreecommitdiff
path: root/app/views/users/show.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/users/show.html.erb')
-rw-r--r--app/views/users/show.html.erb8
1 files changed, 5 insertions, 3 deletions
diff --git a/app/views/users/show.html.erb b/app/views/users/show.html.erb
index 794d2e2..a982928 100644
--- a/app/views/users/show.html.erb
+++ b/app/views/users/show.html.erb
@@ -15,11 +15,13 @@
<h1><%= @user.name %></h1>
<div class="clear"></div>
-
+ <% if @ban_json %>
+ <span class="user-banned">This user is banned on the server for "<%=@ban_json["reason"]%>"<%=" until #{@ban_json["expires"]}" unless @ban_json["expires"] == "forever"%></span>
+ <% end %>
<% if @user.banned? %>
- <span class="user-banned">This user is banned!</span>
+ <span class="user-banned">This user is banned on the website!</span>
<% end %>
-
+ <br>
<% if !@user.confirmed? %>
<% if @user.is?(current_user) || mod? %>
<span class="user-unconfirmed">Please confirm your email <u><%= @user.email %></u> !</span>