Sha256: b7a6e4e8f38383e6e941b9ea089ce54b38c13e6cc9015e7b47724d320480bbcc

Contents?: true

Size: 1.16 KB

Versions: 84

Compression:

Stored size: 1.16 KB

Contents

<%= form_with model: [:account, team], local: true, class: 'form' do |form| %>
  <%= render 'account/shared/forms/errors', form: form %>

  <% with_field_settings form: form do %>
    <%= render 'shared/fields/text_field', method: :name, options: {autofocus: true} %>

    <%= render 'shared/fields/super_select', method: :time_zone,
      choices: time_zone_options_for_select(team.time_zone, nil, ActiveSupport::TimeZone),
      other_options: {search: true} %>

    <% if multiple_locales? %>
      <%= render 'shared/fields/buttons', method: :locale, options: t("locale.locales") %>
    <% end %>

    <%= render "account/teams/fields", team: team, form: form %>
  <% end %>

  <div class="buttons">
    <%= form.submit (form.object.persisted? ? t('.buttons.update') : t('.buttons.create')), class: "button" %>
    <% if controller.action_name == "edit" %>
      <%= link_to t('account.teams.buttons.destroy'), [:account, team], method: :delete, data: { confirm: t('account.teams.buttons.confirmations.destroy') } %>
    <% end %>
    <%= link_to t('global.buttons.cancel'), form.object.persisted? ? [:account, team] : [:account, :teams], class: "button-secondary" %>
  </div>
<% end %>

Version data entries

84 entries across 84 versions & 1 rubygems

Version Path
bullet_train-1.7.21 app/views/account/teams/_form.html.erb
bullet_train-1.7.20 app/views/account/teams/_form.html.erb
bullet_train-1.7.19 app/views/account/teams/_form.html.erb
bullet_train-1.7.18 app/views/account/teams/_form.html.erb
bullet_train-1.7.17 app/views/account/teams/_form.html.erb
bullet_train-1.7.16 app/views/account/teams/_form.html.erb
bullet_train-1.7.15 app/views/account/teams/_form.html.erb
bullet_train-1.7.14 app/views/account/teams/_form.html.erb
bullet_train-1.7.13 app/views/account/teams/_form.html.erb
bullet_train-1.7.12 app/views/account/teams/_form.html.erb
bullet_train-1.7.11 app/views/account/teams/_form.html.erb
bullet_train-1.7.10 app/views/account/teams/_form.html.erb
bullet_train-1.7.9 app/views/account/teams/_form.html.erb
bullet_train-1.7.3 app/views/account/teams/_form.html.erb
bullet_train-1.7.2 app/views/account/teams/_form.html.erb
bullet_train-1.7.1 app/views/account/teams/_form.html.erb
bullet_train-1.7.0 app/views/account/teams/_form.html.erb
bullet_train-1.6.38 app/views/account/teams/_form.html.erb
bullet_train-1.6.37 app/views/account/teams/_form.html.erb
bullet_train-1.6.36 app/views/account/teams/_form.html.erb