mirror of
https://github.com/we-promise/sure.git
synced 2026-04-08 14:54:49 +00:00
15 lines
608 B
Plaintext
15 lines
608 B
Plaintext
<%# locals: (import:) %>
|
|
|
|
<div class="space-y-4">
|
|
<p class="text-sm text-secondary"><%= t("import.configurations.rule_import.description") %></p>
|
|
|
|
<%= styled_form_with model: import,
|
|
url: import_configuration_path(import),
|
|
scope: :import,
|
|
method: :patch,
|
|
class: "space-y-3" do |form| %>
|
|
<p class="text-sm text-secondary"><%= t("import.configurations.rule_import.process_help") %></p>
|
|
<%= form.submit t("import.configurations.rule_import.process_button"), disabled: import.complete? %>
|
|
<% end %>
|
|
</div>
|