33 lines
907 B
Text
33 lines
907 B
Text
- title t(".title.#{@type}")
|
|
- hide_title_header
|
|
|
|
= render partial: "items/item_header", locals: {item: @item}
|
|
|
|
%h2.item-page-subtitle= t(".title.#{@type}")
|
|
|
|
- if @trades.present?
|
|
%table.trades-table
|
|
%thead
|
|
%tr
|
|
%th= t(".table.headings.last_active")
|
|
%th= t(".table.headings.user.#{@type}")
|
|
%th= t(".table.headings.lists")
|
|
%tbody
|
|
- @trades.each do |trade|
|
|
%tr
|
|
%td
|
|
-# TODO: Replace this with the coarse-grained version from 2020,
|
|
-# and translate it!
|
|
= time_ago_in_words trade.user.last_trade_activity_at
|
|
ago
|
|
%td= trade.user.name
|
|
%td
|
|
- if trade.lists.present?
|
|
%ul.trade-list-names
|
|
- trade.lists.each do |list|
|
|
%li= link_to list.name, user_closet_hangers_path(trade.user,
|
|
anchor: "closet-list-#{list.id}")
|
|
- else
|
|
%span.not-in-a-list= t(".table.not_in_a_list")
|
|
- else
|
|
%p= t(".no_trades_yet")
|