Sha256: d32a60f7eb9ee5f66d22dd66ee1f79cb37ee83d8f50b61e9fc3081a936040030
Contents?: true
Size: 1.37 KB
Versions: 27
Compression:
Stored size: 1.37 KB
Contents
<%= render 'account/shared/page' do |p| %> <% p.content_for :title, t('.section') %> <% p.content_for :body do %> <%= render 'account/shared/box', divider: true do |p| %> <% p.content_for :title, t('.header') %> <% p.content_for :description do %> <%= t('.description') %> <%= t('.manage_description') if can? :manage, @stripe_installation %> <% end %> <% p.content_for :body do %> <% with_attribute_settings object: @stripe_installation, strategy: :label do %> <%= render 'shared/attributes/text', attribute: :name %> <%# 🚅 super scaffolding will insert new fields above this line. %> <% end %> <% end %> <% p.content_for :actions do %> <%= link_to t('.buttons.edit'), [:edit, :account, @stripe_installation], class: first_button_primary if can? :edit, @stripe_installation %> <%= button_to t('.buttons.destroy'), [:account, @stripe_installation], method: :delete, class: first_button_primary, data: { confirm: t('.buttons.confirmations.destroy', model_locales(@stripe_installation)) } if can? :destroy, @stripe_installation %> <%= link_to t('global.buttons.back'), [:account, @team, :integrations_stripe_installations], class: first_button_primary %> <% end %> <% end %> <%# 🚅 super scaffolding will insert new children above this line. %> <% end %> <% end %>
Version data entries
27 entries across 27 versions & 1 rubygems