impress/app/views/closet_lists/_closet_list.html.haml

35 lines
1.5 KiB
Text
Raw Normal View History

.closet-list{'data-id' => closet_list.id, 'data-hangers-count' => closet_list.hangers.size, :id => "closet-list-#{closet_list.id}"}
2011-07-29 07:52:04 -07:00
%header
- if show_controls
= form_for [current_user, closet_list], :html => {:class => 'visibility-form'} do |f|
2011-07-30 19:47:06 -07:00
= f.select :visibility, closet_visibility_choices(:human_name)
= f.submit t('.submit')
= closet_visibility_descriptions(:list)
2011-07-29 07:52:04 -07:00
.closet-list-controls
= link_to t('.edit'), edit_user_closet_list_path(closet_list.user_id, closet_list)
= form_tag user_closet_list_path(closet_list.user_id, closet_list), :method => 'delete' do
= submit_tag t('.delete'),
data: {turbo_confirm: t('.delete_confirmation', list_name: closet_list.name)}
2015-09-26 14:22:11 -07:00
= form_tag user_closet_hangers_path(@user), method: :delete, class: 'remove-all' do
= hidden_field_tag :list_id, closet_list.id
= submit_tag t('.remove_all.submit'),
data: {turbo_confirm: t('.remove_all.confirm')}
2015-09-26 14:22:11 -07:00
%button.select-all= t('.select_all')
2011-07-29 07:52:04 -07:00
%h4= closet_list.name
- if show_controls
= render partial: 'closet_lists/trading_neomail_warning', locals: {list: closet_list, user: @user}
-# Cachebuster comment: Updated downstream content at Feb 20 2024, 6:15pm
- cache closet_list do
.closet-list-content
- if closet_list.description?
= closet_list_description_format closet_list
2011-07-30 20:07:58 -07:00
.closet-list-hangers
- unless closet_list.hangers.empty?
= render_sorted_hangers(closet_list)
%span.empty-list= t('.empty')
2011-07-29 07:52:04 -07:00