<% greeting_card = data['greeting_card_record'] %> <%= stylesheet_link_tag "custom_field" %>
<%= label_tag nil,t('category'), :class=> 'control-label' %>
<%= label_tag nil,(greeting_card.category.title rescue nil), class: 'control-label' %>
<%= label_tag nil,t('title'), :class=> 'control-label' %>
<%= label_tag nil,greeting_card.title, :class=> 'control-label' %>
<%= greeting_card_setting.custom_fields.collect do |k,v| required_pattern = v['required']=='true' ? '*' : '' "
#{show_on_front(k,v,greeting_card,true)}
" end.join.html_safe %>
<%= label_tag nil,t('mongoid.attributes.greeting_card_record.reply'), :class=> 'control-label' %>
<%= greeting_card.reply %>