Sha256: 11202bc9c00c3b181a34d8acd88e7cbf2d41f86961e0d42f7be2c2effd286d01
Contents?: true
Size: 1.01 KB
Versions: 5
Compression:
Stored size: 1.01 KB
Contents
<h4> <%= t("admin.form.are_you_sure_you_want_to_delete_the_object", model_name: @abstract_model.pretty_name.downcase) %> <q><strong><%= @model_config.with(object: @object).object_label %></strong></q> <%= t("admin.form.all_of_the_following_related_items_will_be_deleted") %> </h4> <ul> <%= render partial: "delete_notice", object: @object %> </ul> <%= form_for(@object, url: delete_path(model_name: @abstract_model.to_param, id: @object.id), html: {method: "delete"}) do %> <input name="return_to" type="<%= :hidden %>" value="<%= (params[:return_to].presence || request.referer) %>" /> <div class="form-actions"> <button class="btn btn-danger" data-disable-with="<%= t("admin.form.confirmation") %>" type="submit"> <i class="fas fa-check"></i> <%= t("admin.form.confirmation") %> </button> <button class="btn" data-disable-with="<%= t("admin.form.cancel") %>" name="_continue" type="submit"> <i class="fas fa-times"></i> <%= t("admin.form.cancel") %> </button> </div> <% end %>
Version data entries
5 entries across 5 versions & 1 rubygems