_results.html.slim 318 Bytes
h1 Your most recent results
table
  tbody
    - @results.each do |r|
      tr
        td = r.match.local
        td VS
        td = r.match.visit
        td.points class="#{r.points.to_i.zero? ? 'zero' : 'positive'}" = r.points
    - if @results.empty?
      tr
        td colspan=4 There are no finished matches yet.