Iker Narvaez

show label with no data

h1 Leaderboard
table.leaderboard
tbody
tr
- @leaders.each do |user, points|
td = user
td = points
tr
td = user
td = points
- if @leaders.empty?
tr
td colspan=2 There are no results yet
......
h1 Your most recent results
table
tbody
tr
- @results.each do |r|
td = r.match.local
td VS
td = r.match.visit
td = r.points
tr
td = r.match.local
td VS
td = r.match.visit
td = r.points
- if @results.empty?
tr
td colspan=4 There are no finished matches yet.
......
......@@ -11,10 +11,13 @@ table.upcoming
h1 Recent matches
table.recent
tbody
tr
- @recent_matches.each do |match|
td = l(match.date, format: :short)
td = match.local
td = match.score_local
td = match.visit
td = match.score_visit
- @recent_matches.each do |match|
tr
td = l(match.date, format: :short)
td = match.local
td = match.score_local
td = match.visit
td = match.score_visit
- if @recent_matches.empty?
tr
td colspan=4 There are no finished matches yet.
......