Sha256: ca9d2544667a056d74e76f261d613a13b0137aa9f6c78933a812dfbbf3b8b87e
Contents?: true
Size: 1.31 KB
Versions: 127
Compression:
Stored size: 1.31 KB
Contents
<%= render 'account/shared/page' do |page| %> <% page.title t('.section') %> <% page.body do %> <%= render 'account/shared/box', divider: true do |box| %> <% box.title t('.header') %> <% box.description do %> <%= t('.description') %> <%= t('.manage_description') if can? :manage, @stripe_installation %> <% end %> <% box.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 %> <% box.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
127 entries across 127 versions & 1 rubygems