Sha256: 36c97ef06828e285d9d90f59a39d97e440ec9ca186b0f01509daaad23071004c

Contents?: true

Size: 1.35 KB

Versions: 12

Compression:

Stored size: 1.35 KB

Contents

<%= form_for [:account, user], html: {id: dom_id(user, :details), class: 'form'} do |form| %>
  <% with_field_settings form: form do %>
    <div class="grid grid-cols-1 gap-y gap-x sm:grid-cols-2">
      <div class="sm:col-span-2">
        <%= render 'shared/fields/email_field', method: :email, options: {autofocus: true} %>
      </div>

      <div class="sm:col-span-1">
        <%= render 'shared/fields/text_field', method: :first_name %>
      </div>

      <div class="sm:col-span-1">
        <%= render 'shared/fields/text_field', method: :last_name %>
      </div>

      <% if cloudinary_enabled? %>
        <div class="sm:col-span-2">
          <%= render 'shared/fields/cloudinary_image', method: :profile_photo_id %>
        </div>
      <% end %>

      <div class="sm:col-span-2">
        <%= render 'shared/fields/super_select', method: :time_zone,
          choices: time_zone_options_for_select(user.time_zone, nil, ActiveSupport::TimeZone),
          other_options: {search: true} %>
      </div>

      <% if multiple_locales? %>
        <div class="sm:col-span-2">
          <%= render 'shared/fields/buttons', method: :locale, options: {"": t("locale.default")}.merge(t("locale.locales")) %>
        </div>
      <% end %>
    </div>
  <% end %>

  <div class="buttons">
    <%= form.submit t('.buttons.update_profile'), class: "button" %>
  </div>
<% end %>

Version data entries

12 entries across 12 versions & 1 rubygems

Version Path
bullet_train-1.0.11 app/views/account/users/_form.html.erb
bullet_train-1.0.10 app/views/account/users/_form.html.erb
bullet_train-1.0.9 app/views/account/users/_form.html.erb
bullet_train-1.0.8 app/views/account/users/_form.html.erb
bullet_train-1.0.7 app/views/account/users/_form.html.erb
bullet_train-1.0.6 app/views/account/users/_form.html.erb
bullet_train-1.0.5 app/views/account/users/_form.html.erb
bullet_train-1.0.4 app/views/account/users/_form.html.erb
bullet_train-1.0.3 app/views/account/users/_form.html.erb
bullet_train-1.0.2 app/views/account/users/_form.html.erb
bullet_train-1.0.1 app/views/account/users/_form.html.erb
bullet_train-1.0.0 app/views/account/users/_form.html.erb