1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/views/settings/appearances/_form.html.erb

15 lines
428 B
Text

<%= simple_form_for account, url: settings_appearance_path do |f| %>
<%= f.error_notification %>
<%= f.input :timezone,
as: :select,
include_blank: false,
collection: timezones_collection %>
<%= f.input :locale,
as: :select,
include_blank: false,
collection: locales_collection %>
<%= f.button :submit, translate(:save) %>
<% end %>