mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
60 lines
2.3 KiB
Plaintext
60 lines
2.3 KiB
Plaintext
<% content_for :page_title do %>
|
|
Enterprises
|
|
<% end %>
|
|
|
|
<% content_for :page_actions do %>
|
|
<li id="new_product_link">
|
|
<%= button_link_to "New Enterprise", main_app.new_admin_enterprise_path, :icon => 'add', :id => 'admin_new_enterprise_link' %>
|
|
</li>
|
|
<% end %>
|
|
|
|
|
|
<%= form_for @enterprise_set, :url => main_app.bulk_update_admin_enterprises_path do |f| %>
|
|
<table class="index" id="listing_enterprises">
|
|
<colgroup>
|
|
<col style="width: 20%;">
|
|
<col style="width: 5%;">
|
|
<col style="width: 20%;">
|
|
<col>
|
|
<col style="width: 20%;">
|
|
</colgroup>
|
|
|
|
<thead>
|
|
<tr data-hook="enterprises_header">
|
|
<th>Name</th>
|
|
<th>Role</th>
|
|
<th>Next Collection Date/Time</th>
|
|
<th>Description</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<%= f.fields_for :collection do |enterprise_form| %>
|
|
<% enterprise = enterprise_form.object %>
|
|
<tr class="enterprise-<%= enterprise.id %>">
|
|
<td><%= link_to enterprise.name, main_app.admin_enterprise_path(enterprise) %></td>
|
|
<td><%= 'PP ' if enterprise.is_primary_producer %><%= 'D' if enterprise.is_distributor %></td>
|
|
<td><%= enterprise_form.text_field :next_collection_at %></td>
|
|
<td><%= enterprise.description %></td>
|
|
<td data-hook="admin_users_index_row_actions">
|
|
|
|
<%= link_to_with_icon('icon-edit', 'Edit Profile', main_app.edit_admin_enterprise_path(enterprise), class: 'edit') %><br />
|
|
<%= link_to_delete_enterprise enterprise %><br />
|
|
|
|
<% if enterprise.is_distributor %>
|
|
<%= link_to_with_icon 'icon-chevron-right', 'Payment Methods', spree.admin_payment_methods_path(enterprise_id: enterprise.id) %> (<%= enterprise.payment_methods.count %>)<br />
|
|
<%= link_to_with_icon 'icon-plane', 'Shipping Methods', spree.admin_shipping_methods_path(enterprise_id: enterprise.id) %> (<%= enterprise.shipping_methods.count %>)<br />
|
|
<% end %>
|
|
<%= link_to_with_icon 'icon-money', 'Enterprise Fees', main_app.admin_enterprise_fees_path(enterprise_id: enterprise.id) %> (<%= enterprise.enterprise_fees.count %>)
|
|
</td>
|
|
</tr>
|
|
<% end %>
|
|
<% if @enterprises.empty? %>
|
|
<tr><td colspan="4"><%= t(:none) %></td></tr>
|
|
<% end %>
|
|
</tbody>
|
|
</table>
|
|
|
|
<%= f.submit 'Update' %>
|
|
<% end %>
|