mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-28 13:31:06 +00:00
23 lines
378 B
Text
23 lines
378 B
Text
|
<h3>
|
||
|
Team History
|
||
|
</h3>
|
||
|
|
||
|
<table class="data">
|
||
|
<tr>
|
||
|
<th>Date Joined - Date Left</th>
|
||
|
<th>Team</th>
|
||
|
</tr>
|
||
|
|
||
|
<% @user.teamers.past.each do |teamer| %>
|
||
|
<tr>
|
||
|
<td>
|
||
|
<%= longdate teamer.created_at %>
|
||
|
-
|
||
|
<%= longdate teamer.updated_at %>
|
||
|
</td>
|
||
|
<td>
|
||
|
<%= namelink teamer.team %>
|
||
|
</td>
|
||
|
</tr>
|
||
|
<% end %>
|
||
|
</table>
|