2014-01-28 22:46:58 -05:00
|
|
|
<%#
|
|
|
|
# @file
|
|
|
|
# The inner HTML of the account box that comes up in the bottom left
|
|
|
|
#%>
|
|
|
|
|
|
|
|
<% account = current_user %>
|
2014-11-04 12:37:17 -05:00
|
|
|
<%= image_tag user.image.url(:square), :size => "48x48", :class => "sidebarAccountImage" %>
|
2014-08-12 11:09:53 -04:00
|
|
|
<h3 class="accountHeader"><%= account.name.split[0...1][0] %></h3>
|
2014-01-28 22:46:58 -05:00
|
|
|
<ul>
|
2014-08-26 22:51:50 -04:00
|
|
|
<li class="accountListItem accountSettings">
|
|
|
|
<div class="accountIcon"></div>
|
|
|
|
<%= link_to "Account", edit_user_url(account), :data => { :bypass => 'true'} %>
|
|
|
|
</li>
|
2014-05-17 14:57:03 -04:00
|
|
|
<% if account.admin %>
|
2014-08-26 22:51:50 -04:00
|
|
|
<li class="accountListItem accountAdmin">
|
|
|
|
<div class="accountIcon"></div>
|
|
|
|
<%= link_to "Admin", metacodes_path, :data => { :bypass => 'true'} %>
|
|
|
|
</li>
|
2014-05-17 14:57:03 -04:00
|
|
|
<% end %>
|
2014-08-26 22:51:50 -04:00
|
|
|
<li class="accountListItem accountLogout">
|
|
|
|
<div class="accountIcon"></div>
|
2014-10-07 17:46:09 -04:00
|
|
|
<%= link_to "Sign Out", "/logout", id: "Logout", :data => { :bypass => 'true'} %>
|
2014-08-26 22:51:50 -04:00
|
|
|
</li>
|
2014-01-28 22:46:58 -05:00
|
|
|
</ul>
|