summaryrefslogtreecommitdiff
path: root/app/views/layouts/application.html.erb
diff options
context:
space:
mode:
authorLuke Shumaker <shumakl@purdue.edu>2014-04-23 23:30:40 -0400
committerLuke Shumaker <shumakl@purdue.edu>2014-04-23 23:30:40 -0400
commit1429cd41bb4af3429f28dc97efd6994433ebde7b (patch)
tree5db4b36315bd4d6cab60263bbf8a8180dec3fee6 /app/views/layouts/application.html.erb
parent081b7cb82d5869bc43605223c301f7fed8dd50e2 (diff)
parenta6f801b7f5a2b9ca1b61ecc305a31f76be8c8238 (diff)
Merge branch 'master' of https://github.com/LukeShu/leaguer
Diffstat (limited to 'app/views/layouts/application.html.erb')
-rw-r--r--app/views/layouts/application.html.erb5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/application.html.erb
index 6cdb54d..dd0ea91 100644
--- a/app/views/layouts/application.html.erb
+++ b/app/views/layouts/application.html.erb
@@ -27,11 +27,14 @@
<div id="log-buttons">
<% if signed_in? %>
<%= link_to current_user.user_name, current_user, :class => "user" %>
- <%= link_to "Messages", pms_path %>
+ <%= link_to "Messages", pms_path, :class => "signup" %>
<%= link_to "Sign out", session_path("current"), method: "delete", :class => "signout" %>
<% if current_user.can? :edit_server %>
<%= link_to "Server settings", edit_server_path, :class => "server" %>
<% end %>
+ <% if current_user.can? :create_alert %>
+ <%= link_to "Create Alert", new_alert_path, :class => "signin" %>
+ <% end %>
<% else %>
<%= link_to "Log in", new_session_path, :class => "signin" %>
<%= link_to "Sign up", new_user_path, :class => "signup" %>