52 lines
3 KiB
Text
52 lines
3 KiB
Text
<%= form_for(Settings::General.new,
|
|
url: admin_settings_general_settings_path,
|
|
html: { data: { action: "submit->config#updateConfigurationSettings" } }) do |f| %>
|
|
<details class="crayons-card">
|
|
<summary class="crayons-subtitle-2 p-6">Onboarding</summary>
|
|
<div class="p-6 pt-0">
|
|
<fieldset class="grid gap-4">
|
|
|
|
<div class="crayons-field">
|
|
<%= admin_config_label :suggested_tags %>
|
|
<%= admin_config_description Constants::Settings::General.details[:suggested_tags][:description] %>
|
|
<%= f.text_field :suggested_tags,
|
|
class: "crayons-textfield",
|
|
value: Settings::General.suggested_tags.join(","),
|
|
placeholder: Constants::Settings::General.details[:suggested_tags][:placeholder] %>
|
|
</div>
|
|
|
|
<div class="crayons-field">
|
|
<%= admin_config_label :newsletter_step_heading %>
|
|
<%= admin_config_description Constants::Settings::General.details[:onboarding_newsletter_content][:description] %>
|
|
<%= f.text_area :onboarding_newsletter_content,
|
|
class: "crayons-textfield",
|
|
value: Settings::General.onboarding_newsletter_content,
|
|
placeholder: Constants::Settings::General.details[:onboarding_newsletter_content][:placeholder] %>
|
|
</div>
|
|
|
|
<div class="crayons-field">
|
|
<%= admin_config_label Constants::Settings::General.details[:onboarding_newsletter_opt_in_head][:description] %>
|
|
<%= f.text_field :onboarding_newsletter_opt_in_head,
|
|
class: "crayons-textfield",
|
|
value: Settings::General.onboarding_newsletter_opt_in_head,
|
|
placeholder: Constants::Settings::General.details[:onboarding_newsletter_opt_in_head][:placeholder] %>
|
|
|
|
<%= admin_config_label Constants::Settings::General.details[:onboarding_newsletter_opt_in_subhead][:description] %>
|
|
<%= f.text_field :onboarding_newsletter_opt_in_subhead,
|
|
class: "crayons-textfield",
|
|
value: Settings::General.onboarding_newsletter_opt_in_subhead,
|
|
placeholder: Constants::Settings::General.details[:onboarding_newsletter_opt_in_subhead][:placeholder] %>
|
|
<% if FeatureFlag.enabled?(Geolocation::FEATURE_FLAG) %>
|
|
<%= admin_config_label Constants::Settings::General.details[:geos_with_allowed_default_email_opt_in][:description] %>
|
|
<%= f.text_field :geos_with_allowed_default_email_opt_in,
|
|
class: "crayons-textfield",
|
|
value: Settings::General.geos_with_allowed_default_email_opt_in,
|
|
placeholder: Constants::Settings::General.details[:geos_with_allowed_default_email_opt_in][:placeholder] %>
|
|
<% end %>
|
|
</div>
|
|
|
|
</fieldset>
|
|
<%= render "update_setting_button", f: f %>
|
|
</div>
|
|
</details>
|
|
<% end %>
|