Sha256: 2c9df6d05b5ba21b9e9961a56f286a17a9b13a08d2256d5110287422e74623a0

Contents?: true

Size: 1.18 KB

Versions: 24

Compression:

Stored size: 1.18 KB

Contents

<%= decidim_form_for(@form) do |f| %>
  <div class="field">
    <%= f.text_field :name, autofocus: true %>
  </div>

  <div class="field">
    <%= f.text_field :host %>
  </div>

  <div class="field">
    <%= f.text_area :secondary_hosts %>
    <p class="help-text"><%= t(".secondary_hosts_hint") %></p>
  </div>

  <div class="field">
    <%= f.label :force_authentication %>
    <%= f.check_box :force_users_to_authenticate_before_access_organization %>
  </div>

  <div class="field">
    <%= f.label :users_registration_mode %>
    <%= f.collection_radio_buttons :users_registration_mode,
                                   Decidim::Organization.users_registration_modes,
                                   :first,
                                   ->(mode) { t("decidim.system.organizations.users_registration_mode.#{mode.first}") } %>
  </div>

  <div class="field">
    <%= f.label :available_authorizations %>
    <%= f.collection_check_boxes :available_authorizations, Decidim.authorization_workflows, :name, :description %>
  </div>

  <%= render partial: "advanced_settings", locals: { f: f } %>

  <div class="actions">
    <%= f.submit t("decidim.system.actions.save") %>
  </div>
<% end %>

Version data entries

24 entries across 24 versions & 1 rubygems

Version Path
decidim-system-0.26.8 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.4 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.3 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.7 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.5 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.2 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.1 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.4 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.0 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.3 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.0.rc2 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.27.0.rc1 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.2 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.1 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.0 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.0.rc2 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.26.0.rc1 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.25.2 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.25.1 app/views/decidim/system/organizations/edit.html.erb
decidim-system-0.25.0 app/views/decidim/system/organizations/edit.html.erb