ensl.org/app/views/groups/show.html.erb

25 lines
604 B
Text
Raw Normal View History

2014-04-27 00:34:38 +00:00
<div id="group">
<h1><%=h @group.name %></h1>
<h3 class="title">Founder: <%=h @group.founder.username %></h3>
2014-04-27 00:34:38 +00:00
<table class="striped">
<tr>
<th>Username</th>
<th>Real Name</th>
<th>SteamID</th>
</tr>
2014-04-27 00:34:38 +00:00
<% @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>
2014-04-27 00:34:38 +00:00
<% if cuser and cuser.admin? %>
<%= link_to 'Edit Group', edit_group_path(@group), class: 'button' %>
<% end %>
2014-04-27 00:34:38 +00:00
</div>