Skip to content

Commit

Permalink
add smaller/greater equal signs to fields
Browse files Browse the repository at this point in the history
  • Loading branch information
schorsch committed Feb 2, 2013
1 parent 7321244 commit 03659c8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions views/_field.haml
Expand Up @@ -20,9 +20,9 @@
%small="#{fld[ i[0] ]}"
- else
- if fld[ i[0] ]
%small=">#{fld[ i[0] ]}"
%small="≥ #{fld[ i[0] ]}"
- if fld[ i[1] ]
%small="<#{fld[ i[1] ]}"
%small="&le; #{fld[ i[1] ]}"
.props
%p= fld[:description]
- fld.sort{|a,b| a <=> b }.each do |k,v|
Expand Down
4 changes: 2 additions & 2 deletions views/_field_table.haml
Expand Up @@ -28,9 +28,9 @@
%small="#{fld[ i[0] ]}"
- else
- if fld[ i[0] ]
%small=">#{fld[ i[0] ]}"
%small="&ge; #{fld[ i[0] ]}"
- if fld[ i[1] ]
%small="<#{fld[ i[1] ]}"
%small="&le; #{fld[ i[1] ]}"
%td
= fld[:description]

0 comments on commit 03659c8

Please sign in to comment.