22 lines
744 B
Plaintext
22 lines
744 B
Plaintext
%tr#m_odr_row{:id => m_odr.id}
|
|
|
|
%td= m_odr.p_customer.show_name if m_odr.p_customer
|
|
%td= m_odr.name
|
|
%td
|
|
=link_to public_m_odr_path(m_odr.slug), public_m_odr_path(m_odr.slug), :target => "_blank"
|
|
%td= m_odr.slug
|
|
%td= m_odr.start_at
|
|
%td= m_odr.end_at
|
|
%td= m_odr.public_end
|
|
%td= "oui" if m_odr.address_process
|
|
%td= "oui" if m_odr.rib_process
|
|
%td= "oui" if m_odr.email_needed
|
|
%td= "oui" if m_odr.tel_needed
|
|
|
|
|
|
%td.actions
|
|
= link_to i(:"trash-o"), [:admin, m_odr], method: :delete, data: { confirm: 'Voulez-vous vraiment supprimer cet enregistrement ? ' } , :remote => true
|
|
= link_to i(:pencil), edit_admin_m_odr_path(m_odr), :remote => false
|
|
= link_to i(:eye), admin_m_odr_path(m_odr), :remote => true
|
|
|