summaryrefslogtreecommitdiff
path: root/app/views/statics/online.html.erb
blob: 8bacf6f37a579799404b60defcf74af474ed7cfb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<% title "Who's Playing?" %>
<h1>These players are currently playing on Redstoner (<%= @count %>):</h1>
<div id="userlist">
  <% @players.each do |u| %>
    <div class="list-user">
      <%= link_to(u.avatar(64), u) %>
      <div class="detail">
        <%= render partial: "users/username", locals: { user: u } %><br>
        <% if u.id %>
          <i><%= u.ign %></i>
        <% else %>
          <i>(Not signed up)</i>
        <% end %>
      </div>
    </div>
  <% end %>
</div>