Files
mozo-backend/app/views/suppliers/tables/show.html.slim
T
2014-04-17 19:17:57 +02:00

18 lines
734 B
Plaintext

- model_class = Table
.page-header= title :show, @table
dl.dl-horizontal.show-list
dt= model_class.human_attribute_name(:number)
dd= @table.number
- if @table.section.present?
dt= Section.model_name.human
dd= link_to @table.section.title, [:suppliers, @table.section]
//= supplier_form_actions :index, :edit, :destroy, object: @table, for: :tables
.form-actions
= link_to [:suppliers, :tables], class: 'form-action-index'
span data-t="helpers.links.index"
= link_to [:edit, :suppliers, @table], class: 'form-action-edit'
span data-t="helpers.links.edit"
= link_to [:suppliers, @table], method: :delete, data: {confirm: are_you_sure? }, class: 'form-action-destroy'
span data-t="helpers.links.destroy"