Sha256: 97c9a21ec0e413374671944a6acf830fcec032b4677620a9e4c86b896260128c
Contents?: true
Size: 778 Bytes
Versions: 16
Compression:
Stored size: 778 Bytes
Contents
<div class="card"> <div class="card-divider"> <h2 class="card-title"> <%= title %> </h2> </div> </div> <div class="plan-sections"> <template> <%= fields_for "sections[#{blank_section.to_param}]", blank_section do |section_form| %> <%= render "section", form: section_form, id: tabs_id_for_section(blank_section) %> <% end %> </template> <div class="sections-list"> <% @form.sections.each do |section| %> <%= fields_for "sections[]", section do |section_form| %> <%= render "section", form: section_form, id: tabs_id_for_section(section) %> <% end %> <% end %> </div> <button class="button add-section"><%= t(".add_section") %></button> </div> <%= javascript_include_tag "decidim/plans/admin/sections" %>
Version data entries
16 entries across 16 versions & 1 rubygems