mirror of https://github.com/docusealco/docuseal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.7 KiB
31 lines
1.7 KiB
<%= form_for config, url: settings_notifications_path, method: :post, html: { autocomplete: 'off', class: 'space-y-4' } do |f| %>
|
|
<%= f.hidden_field :key %>
|
|
<div class="form-control">
|
|
<% record = Struct.new(:first_duration, :second_duration, :third_duration).new(*(f.object.value || {}).values_at('first_duration', 'second_duration', 'third_duration')) %>
|
|
<% durations = (Docuseal.multitenant? ? AccountConfigs::REMINDER_DURATIONS.except('one_hour', 'two_hours') : AccountConfigs::REMINDER_DURATIONS).keys.map { |v| [t(v.underscore), v] } %>
|
|
<div class="flex flex-col md:flex-row gap-2">
|
|
<div class="w-full">
|
|
<%= f.fields_for :value, record do |ff| %>
|
|
<%= ff.label :first_duration, t('first_reminder_in'), class: 'label truncate' %>
|
|
<%= ff.select :first_duration, durations, { include_blank: t('none') }, class: 'base-select' %>
|
|
<% end %>
|
|
</div>
|
|
<div class="w-full">
|
|
<%= f.fields_for :value, record do |ff| %>
|
|
<%= ff.label :second_duration, t('second_reminder_in'), class: 'label truncate' %>
|
|
<%= ff.select :second_duration, durations, { include_blank: t('none') }, class: 'base-select' %>
|
|
<% end %>
|
|
</div>
|
|
<div class="w-full">
|
|
<%= f.fields_for :value, record do |ff| %>
|
|
<%= ff.label :third_duration, t('third_reminder_in'), class: 'label truncate' %>
|
|
<%= ff.select :third_duration, durations, { include_blank: t('none') }, class: 'base-select' %>
|
|
<% end %>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="form-control pt-4">
|
|
<%= f.button button_title(title: t('save'), disabled_with: t('updating')), class: 'base-button' %>
|
|
</div>
|
|
<% end %>
|