26 lines
646 B
Plaintext
26 lines
646 B
Plaintext
- model_class = Product
|
|
.page-header= title :show, @product
|
|
|
|
.display-row
|
|
.display-label
|
|
span data-t='attributes.product.name'
|
|
.display-field
|
|
span= @product.name
|
|
.display-row
|
|
.display-label
|
|
span data-t='attributes.product.code'
|
|
.display-field
|
|
span= @product.code
|
|
.display-row
|
|
.display-label
|
|
span data-t='attributes.product.price'
|
|
.display-field
|
|
span=currency @product.price
|
|
.display-row
|
|
.display-label
|
|
span data-t='models.plural.product_category'
|
|
.display-field
|
|
span= @product.category_links(namespace: :suppliers)
|
|
|
|
= supplier_form_actions :index, :edit, :destroy, object: @product, for: :products
|