mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-01-25 20:46:48 +00:00
When a user has no enterprises, the admin dashboard displays a "What's this?" hint in the right corner of the enterprises tab. The link text and the tooltip were both broken (missing translation).
11 lines
492 B
Plaintext
11 lines
492 B
Plaintext
%div.header.sixteen.columns.alpha{ :class => "#{@enterprises.count > 0 ? "" : "red"}"}
|
|
%h3.thirteen.columns.alpha
|
|
= t "spree_admin_overview_enterprises_header"
|
|
- if @enterprises.any?
|
|
- if spree_current_user.can_own_more_enterprises?
|
|
%a.three.columns.omega.icon-plus.button.blue.white-bottom{ href: "#{main_app.new_admin_enterprise_path}" }
|
|
= t "spree_admin_enterprises_create_new"
|
|
- else
|
|
%a{ "ofn-with-tip" => t('.ofn_with_tip') }
|
|
= t "admin.whats_this"
|