mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-20 00:37:26 +00:00
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
- content_for :page_title do
|
|
Enterprises
|
|
|
|
- content_for :page_actions do
|
|
%li#new_product_link
|
|
= button_link_to "New Enterprise", main_app.new_admin_enterprise_path, :icon => 'icon-plus', :id => 'admin_new_enterprise_link'
|
|
|
|
= render 'admin/shared/enterprises_sub_menu'
|
|
|
|
= form_for @enterprise_set, :url => main_app.bulk_update_admin_enterprises_path do |f|
|
|
%table#listing_enterprises.index
|
|
%colgroup
|
|
%col{style: "width: 25%;"}/
|
|
%col{style: "width: 10%;"}/
|
|
%col{style: "width: 5%;"}/
|
|
%col{style: "width: 10%;"}/
|
|
%col{style: "width: 20%;"}/
|
|
%thead
|
|
%tr{"data-hook" => "enterprises_header"}
|
|
%th Name
|
|
%th Role
|
|
%th Visible?
|
|
%th Type
|
|
%th
|
|
%tbody
|
|
= f.fields_for :collection do |enterprise_form|
|
|
- enterprise = enterprise_form.object
|
|
%tr{class: "enterprise-#{enterprise.id}"}
|
|
%td= link_to enterprise.name, main_app.edit_admin_enterprise_path(enterprise)
|
|
%td
|
|
= enterprise_form.check_box :is_primary_producer
|
|
Producer
|
|
%br/
|
|
= enterprise_form.check_box :is_distributor
|
|
Hub
|
|
%td= enterprise_form.check_box :visible
|
|
%td= enterprise_form.select :type, Enterprise::TYPES, {}, class: 'select2 fullwidth'
|
|
%td{"data-hook" => "admin_users_index_row_actions"}
|
|
= render 'actions', enterprise: enterprise
|
|
- if @enterprises.empty?
|
|
%tr
|
|
%td{colspan: "4"}= t(:none)
|
|
= f.submit 'Update'
|