Sha256: ae45d286a4ef966bd13878c3bac3d257818b4b778f33c13e76ae06be28ceb3cf
Contents?: true
Size: 1016 Bytes
Versions: 2
Compression:
Stored size: 1016 Bytes
Contents
<% title = t("admin.titles.edit", default: "Editing %{model_name}", model_name: admin.model_name.titleize, pluralized_model_name: admin.model_name.plural.titleize) %> <% content_for(:title, title) %> <% breadcrumb title %> <% content_for(:primary_toolbar) do %> <%= button_tag t("admin.buttons.save", default: "Save %{model_name}", model_name: admin.model_name), class: "btn btn-success btn-lg" unless admin.readonly? %> <% end %> <% content_for(:secondary_toolbar) do %> <%= link_to admin.path(:destroy, id: admin.to_param(instance)), method: :delete, class: "btn btn-danger", data: { toggle: "confirm-delete", placement: "bottom" } do %> <%= icon("fa fa-trash") %> <%= t("admin.buttons.delete", default: "Delete %{model_name}", model_name: admin.model_name) %> <% end unless admin.readonly? %> <% end %> <%= trestle_form_for instance, url: admin.readonly? ? "#" : admin.path(:update, id: admin.to_param(instance)), method: :patch do |f| %> <%= render partial: "form", layout: "layout" %> <% end %>
Version data entries
2 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
trestle-0.8.5 | app/views/trestle/resource/edit.html.erb |
trestle-0.8.5 | app/views/trestle/resource/show.html.erb |