'
create_first_field
@form_to_show.form_show.each do |num,property|
@field_property = {}
property.each do |key,value|
@value= value
if @value.class == BSON::Document || @value.class == Hash
@disp_value = @value[I18n.locale.to_s] rescue ""
else
@disp_value = @value
end
@field_property[key] = @disp_value
end
if @field_property['right'] == 0
@table_str_left += '
'
break if @field_property["name"] == ""
@table_str_left += '
'
if @field_property["comment_text"] != ""
@table_str_left += '
'
@table_str_left += '
'
else
@table_str_left += '
'
end
if @field_property["is_num"] == 1
@table_str_left += '
'
else
@table_str_left += '
'
@field_property["choice_fields"].each do |create_choice|
@table_str_left += ''
@table_str_left += ''
end
@table_str_left += '
'
end
if @field_property["hint"].to_s != ""
@table_str_left +='
'+@field_property["hint"]+'
'
end
@table_str_left += '
'
else
@table_str_right += '
'
break if @field_property["name"] == ""
@table_str_right += '
'
if @field_property["comment_text"] != ""
@table_str_right += '
'
@table_str_right += '
'
else
@table_str_right += '
'
end
if @field_property["is_num"] == 1
@table_str_right += '
'
else
@table_str_right += '
'
@field_property["choice_fields"].each do |create_choice|
@table_str_right += ''
@table_str_right += ''
end
@table_str_right += '
'
end
if @field_property["hint"].to_s != ""
@table_str_right +='
'+@field_property["hint"]+'
'
end
@table_str_right += '
'
end
end
@table_str_left += '