This repository has been archived on 2024-08-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
redstoner.com/app/views/users/index.html.erb
2014-06-16 00:05:09 +02:00

17 lines
458 B
Plaintext

<% if params[:role] %>
<h1><%= title "All '#{params[:role]}' Users" %></h1>
<%= link_to "show all", users_path %>
<% else %>
<h1><%= title "All Users" %></h1>
<% end %>
<div id="userlist">
<% @users.each do |u| %>
<div class="list-user">
<%= link_to(u.avatar(64), u) %>
<div class="detail">
<%= render partial: "users/username", locals: { user: u } %><br>
<i><%= u.ign %></i>
</div>
</div>
<% end %>
</div>