diff --git a/app/views/decidim/extra_user_fields/_registration_form.html.erb b/app/views/decidim/extra_user_fields/_registration_form.html.erb index 0bfa9d5..1a7f90c 100644 --- a/app/views/decidim/extra_user_fields/_registration_form.html.erb +++ b/app/views/decidim/extra_user_fields/_registration_form.html.erb @@ -1,49 +1,44 @@ <% if current_organization.extra_user_fields_enabled? %> -
<%== t(".callout.help") %>
-<%= t(".description") %>
- <%= form.check_box :country, label: t(".label") %> + <%= form.check_box :country, label: t(".label"), help_text: t(".description") %><%= t(".description") %>
- <%= form.check_box :date_of_birth, label: t(".label") %> + <%= form.check_box :date_of_birth, label: t(".label"), help_text: t(".description") %><%= t(".description") %>
- <%= form.check_box :gender, label: t(".label") %> + <%= form.check_box :gender, label: t(".label"), help_text: t(".description") %><%= t(".description") %>
- <%= form.check_box :location, label: t(".label") %> + <%= form.check_box :location, label: t(".label"), help_text: t(".description") %><%= t(".description") %>
- <%= form.check_box :phone_number, label: t(".label") %> + <%= form.check_box :phone_number, label: t(".label"), help_text: t(".description") %><%= t(".description") %>
- <%= form.check_box :postal_code, label: t(".label") %> + <%= form.check_box :postal_code, label: t(".label"), help_text: t(".description") %>