mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-11-15 17:31:27 +00:00
25 lines
No EOL
604 B
Text
25 lines
No EOL
604 B
Text
<div id="group">
|
|
<h1><%=h @group.name %></h1>
|
|
<h3 class="title">Founder: <%=h @group.founder.username %></h3>
|
|
|
|
<table class="striped">
|
|
<tr>
|
|
<th>Username</th>
|
|
<th>Real Name</th>
|
|
<th>SteamID</th>
|
|
</tr>
|
|
|
|
<% @group.users.each do |user| %>
|
|
<tr>
|
|
<td><%=link_to (h user.username), user %></td>
|
|
<td><%=h user.firstname %> <%=h user.lastname %></td>
|
|
<td><%=h user.steamid %></td>
|
|
</tr>
|
|
<% end %>
|
|
</table>
|
|
|
|
<% if cuser and cuser.admin? %>
|
|
<%= link_to 'Edit Group', edit_group_path(@group), class: 'button' %>
|
|
<% end %>
|
|
</div>
|
|
|