Fixed percent sign in sync-view.
This commit is contained in:
parent
ff343933dd
commit
b7416b2210
1 changed files with 1 additions and 2 deletions
|
@ -66,10 +66,9 @@
|
||||||
%td{:style => highlight_new(attrs, :unit)}= form.text_field 'unit', class: 'input-mini'
|
%td{:style => highlight_new(attrs, :unit)}= form.text_field 'unit', class: 'input-mini'
|
||||||
%td{:style => highlight_new(attrs, :unit_quantity)}= form.text_field 'unit_quantity', class: 'input-mini'
|
%td{:style => highlight_new(attrs, :unit_quantity)}= form.text_field 'unit_quantity', class: 'input-mini'
|
||||||
%td{:style => highlight_new(attrs, :price)}= form.text_field 'price', class: 'input-mini'
|
%td{:style => highlight_new(attrs, :price)}= form.text_field 'price', class: 'input-mini'
|
||||||
%td{:style => highlight_new(attrs, :tax)}.input-append
|
%td{:style => highlight_new(attrs, :tax), class: 'input-append'}
|
||||||
= form.text_field 'tax', class: 'input-mini'
|
= form.text_field 'tax', class: 'input-mini'
|
||||||
%span.add-on %
|
%span.add-on %
|
||||||
-# untested, because database is not set up locally!
|
|
||||||
%td{:style => highlight_new(attrs, :deposit)}= form.text_field 'deposit', class: 'input-mini'
|
%td{:style => highlight_new(attrs, :deposit)}= form.text_field 'deposit', class: 'input-mini'
|
||||||
%td= form.select :article_category_id, ArticleCategory.all.map {|a| [ a.name, a.id ] },
|
%td= form.select :article_category_id, ArticleCategory.all.map {|a| [ a.name, a.id ] },
|
||||||
{include_blank: true}, class: 'input-small'
|
{include_blank: true}, class: 'input-small'
|
||||||
|
|
Loading…
Reference in a new issue