Sha256: f198a9afd6b05fe69a77e79ed3cc055dc0ca5f65f4c462a8b87c5b36bf154d09
Contents?: true
Size: 1.36 KB
Versions: 4
Compression:
Stored size: 1.36 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-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> <div class="sm:col-span-2"> <% image_method = :profile_photo if cloudinary_enabled? image_method = :profile_photo_id end %> <%= render 'shared/fields/image', method: image_method %> </div> <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 %> <%= render "account/users/fields", user: user, form: form %> </div> <% end %> <div class="buttons"> <%= form.submit t('.buttons.update_profile'), class: "button" %> </div> <% end %>
Version data entries
4 entries across 4 versions & 1 rubygems