add content to edit email
This commit is contained in:
parent
86cf5f9a13
commit
b7efc22d1d
|
@ -4,4 +4,44 @@
|
||||||
<%= email_set_content[now_locale].html_safe rescue nil %>
|
<%= email_set_content[now_locale].html_safe rescue nil %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<br>
|
<br>
|
||||||
<%= @data['content'].html_safe %>
|
<%= @data['content'].html_safe %>
|
||||||
|
|
||||||
|
<% property = Property.where(id: @data['property_id']).first %>
|
||||||
|
<% if !property.nil? %>
|
||||||
|
<h3><%= property['title'].collect{|k,v| v}.uniq.join('/') rescue nil %></h3>
|
||||||
|
<% I18n.with_locale(@data['locale']) do %>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<% ['property_usage','note','category','property_location','property_number','can_be_hired','purchase_date','owners','other_owner','owner_email','owner_phone','price'].each do |k| %>
|
||||||
|
<% v = property.send(k) %>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<%= k=='category' ? t('category') : t("property_hire.#{k}") %>:
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<% if ['purchase_date'].include?(k) %>
|
||||||
|
<%= v.strftime('%Y/%m/%d %H:%M') rescue nil %>
|
||||||
|
<% elsif ['property_usage','note'].include?(k) %>
|
||||||
|
<%= property[k].collect{|k,v| v}.uniq.join('/') rescue nil %>
|
||||||
|
<% elsif k=='owners' %>
|
||||||
|
<%= property.owner_profiles.collect{|v| v.name}.join(', ') %>
|
||||||
|
<% elsif k == 'category' %>
|
||||||
|
<%= v.title %>
|
||||||
|
<% elsif k == 'can_be_hired' %>
|
||||||
|
<%= v ? t('yes_') : t('no_') %>
|
||||||
|
<% else %>
|
||||||
|
<%= v %>
|
||||||
|
<% end %>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
<% end %>
|
||||||
|
<% end %>
|
|
@ -1,8 +1,45 @@
|
||||||
<% email_set = Property.where(id: @data['property_id']).first.hire_email_sets.select{|v| v.field_name == 'edit'} %>
|
<% property = Property.where(id: @data['property_id']).first %>
|
||||||
|
<% email_set = property.hire_email_sets.select{|v| v.field_name == 'edit'} %>
|
||||||
<% if email_set.length != 0 %>
|
<% if email_set.length != 0 %>
|
||||||
<% if !(email_set[0].content.nil?) %>
|
<% if !(email_set[0].content.nil?) %>
|
||||||
<%= email_set[0].content[@data['locale']].html_safe %>
|
<%= email_set[0].content[@data['locale']].html_safe %>
|
||||||
<% end %>
|
<% end %>
|
||||||
<% else %>
|
<% else %>
|
||||||
<%= t('property_hire.email_edit_success') %>
|
<%= t('property_hire.email_edit_success') %>
|
||||||
|
<% end %>
|
||||||
|
<h3><%= property['title'].collect{|k,v| v}.uniq.join('/') rescue nil %></h3>
|
||||||
|
<% I18n.with_locale(@data['locale']) do %>
|
||||||
|
<table>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<td></td>
|
||||||
|
<td></td>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<% ['property_usage','note','category','property_location','property_number','can_be_hired','purchase_date','owners','other_owner','owner_email','owner_phone','price'].each do |k| %>
|
||||||
|
<% v = property.send(k) %>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
|
<%= k=='category' ? t('category') : t("property_hire.#{k}") %>:
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<% if ['purchase_date'].include?(k) %>
|
||||||
|
<%= v.strftime('%Y/%m/%d %H:%M') rescue nil %>
|
||||||
|
<% elsif ['property_usage','note'].include?(k) %>
|
||||||
|
<%= property[k].collect{|k,v| v}.uniq.join('/') rescue nil %>
|
||||||
|
<% elsif k=='owners' %>
|
||||||
|
<%= property.owner_profiles.collect{|v| v.name}.join(', ') %>
|
||||||
|
<% elsif k == 'category' %>
|
||||||
|
<%= v.title %>
|
||||||
|
<% elsif k == 'can_be_hired' %>
|
||||||
|
<%= v ? t('yes_') : t('no_') %>
|
||||||
|
<% else %>
|
||||||
|
<%= v %>
|
||||||
|
<% end %>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<% end %>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
<% end %>
|
<% end %>
|
Loading…
Reference in New Issue