Sha256: d2dc8fe6ac1d7d316dbeabca223ea3be8d1197ca57e1f9cb0897258ea1ff57d7
Contents?: true
Size: 1.41 KB
Versions: 6
Compression:
Stored size: 1.41 KB
Contents
<%= decidim_form_for @form, method: :patch, url: voting_path(@current_voting), html: { class: "form edit_voting" } do |f| %> <%= render partial: "form", object: f %> <div class="button--double form-general-submit"> <%= f.submit t("votings.edit.update", scope: "decidim.votings.admin"), class: "button" %> <% if allowed_to? :publish, :voting, voting: @current_voting %> <% if @current_voting.published? %> <%= link_to t("votings.actions.unpublish", scope: "decidim.votings.admin"), url_for(action: :unpublish, id: @current_voting, controller: "votings"), method: :put, class: "button muted" %> <% else %> <%= link_to t("votings.actions.publish", scope: "decidim.votings.admin"), url_for(action: :publish, id: @current_voting, controller: "votings"), method: :put, class: "button hollow" %> <% end %> <% end %> <% if allowed_to? :destroy, :voting, voting: @current_voting %> <%= link_to t("votings.actions.destroy", scope: "decidim.votings.admin"), @current_voting, method: :delete, class: "alert button", data: { confirm: t("votings.actions.confirm_destroy", scope: "decidim.votings.admin") } %> <% end %> </div> <% end %>
Version data entries
6 entries across 6 versions & 1 rubygems