Co gdy potrzebuję "end" w warunku "if" w HAML?

POtrzebuję ten kod przerobić na HAML. W skłądni HAml, bez “end” cała tabela staje się częścią warunku “else” a nie tylko “tr” Jak to zrobić?

https://paste.ofcode.org/HxZL6caHYac2ikrUdJ573S

Sprawdz tutaj :

http://htmltohaml.com

  %tr{id: ("current_item" if line_item == @current_item)}
    %td
      = line_item.quantity
      ×
    %td= line_item.product.title
    %td.item_price= number_to_currency(line_item.total_price)
1 Like