2013-06-26 19:57:38 +02:00
|
|
|
%table.table.table-condensed
|
|
|
|
%tr
|
|
|
|
%th= t 'activerecord.attributes.article.price'
|
|
|
|
%td.numeric= number_to_currency article.price
|
|
|
|
%tr
|
|
|
|
%th= t 'activerecord.attributes.article.deposit'
|
|
|
|
%td.numeric= number_to_currency article.deposit
|
|
|
|
%tr
|
|
|
|
%th= t 'activerecord.attributes.article.tax'
|
|
|
|
%td.numeric= number_to_percentage article.tax
|
2013-07-08 22:10:36 +02:00
|
|
|
- unless article.fc_price == article.gross_price
|
|
|
|
%tr
|
|
|
|
%th= t 'activerecord.attributes.article.fc_share'
|
|
|
|
%td.numeric= number_to_currency(article.fc_price-article.gross_price)
|
2013-06-26 19:57:38 +02:00
|
|
|
%tr
|
|
|
|
%th= t 'activerecord.attributes.article.fc_price'
|
|
|
|
%td.numeric= number_to_currency article.fc_price
|