mirror of
https://github.com/ENSL/ensl.org.git
synced 2024-12-29 05:51:22 +00:00
12 lines
295 B
Text
12 lines
295 B
Text
|
<h2>
|
||
|
Match History
|
||
|
</h2>
|
||
|
|
||
|
<% @user.match_teams.each do |team| %>
|
||
|
<h3>
|
||
|
<%= namelink team %>
|
||
|
</h3>
|
||
|
|
||
|
<%= render :partial => "matches/list", :locals => {:matches => Match.finished.ordered.of_userteam(@user, team), :friendly => team, :contest => true, :exclude_maps => true} %>
|
||
|
<% end %>
|