mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-26 20:56:48 +00:00
Running the spec was pointing to the following deprecation - Passing two trailing hashes to is deprecated, merge the trailing hashes into a single one. (called at /home/ffurtado/openfoodnetwork/app/views/spree/admin/users/index.html.haml:16)
44 lines
1.4 KiB
Plaintext
44 lines
1.4 KiB
Plaintext
- content_for :page_title do
|
|
= t(".listing_users")
|
|
- content_for :page_actions do
|
|
%li
|
|
= button_link_to t(".new_user"), new_object_url, icon: "icon-plus", id: "admin_new_user_link"
|
|
|
|
= render "admin/shared/users_sub_menu"
|
|
|
|
%table#listing_users.index
|
|
%colgroup
|
|
%col{ style: "width: 65%" }
|
|
%col{ style: "width: 20%" }
|
|
%col{ style: "width: 15%" }
|
|
%thead
|
|
%tr
|
|
%th= sort_link [:spree, @search], :email, t(".user"), title: "users_email_title"
|
|
%th= sort_link [:spree, @search], :enterprise_limit, t(".enterprise_limit")
|
|
%th.actions
|
|
%tbody
|
|
- @users.each do |user|
|
|
- # HAML seems to have a bug that it can't parse `class cycle('odd', 'even')` on the element.
|
|
- # So we assign it first:
|
|
- row_class = cycle("odd", "even")
|
|
%tr{id: spree_dom_id(user), class: row_class}
|
|
%td.user_email= link_to user.email, edit_object_url(user)
|
|
%td.user_enterprise_limit= user.enterprise_limit
|
|
%td.actions
|
|
= link_to_delete user, no_text: true
|
|
|
|
- _with_routes Spree::Core::Engine.routes do
|
|
= render partial: 'admin/shared/pagy_links', locals: { pagy: @pagy }
|
|
|
|
- content_for :sidebar_title do
|
|
= t(".search")
|
|
- content_for :sidebar do
|
|
.box.align-center
|
|
= search_form_for [:admin, @search] do |f|
|
|
.field
|
|
= f.label t(".email")
|
|
%br
|
|
= f.text_field :email_cont, class: "fullwidth"
|
|
%div
|
|
= button t(".search"), "icon-search"
|