Extract settings forms to partials

This commit is contained in:
Julian Herrero
2019-05-14 18:32:13 +02:00
parent 90c1d681d0
commit b4e8395bd6
4 changed files with 16 additions and 15 deletions

View File

@@ -0,0 +1,6 @@
<%= form_for(feature, url: admin_setting_path(feature), html: { id: "edit_#{dom_id(feature)}"}) do |f| %>
<%= f.hidden_field :value, id: dom_id(feature), value: (feature.enabled? ? "" : "active") %>
<%= f.submit(t("admin.settings.index.features.#{feature.enabled? ? "disable" : "enable"}"),
class: "button expanded #{feature.enabled? ? "hollow alert" : "success"}",
data: {confirm: t("admin.actions.confirm")}) %>
<% end %>