19 lines
717 B
Plaintext
19 lines
717 B
Plaintext
<style>
|
||
hr.dashed_style{
|
||
border-style: dashed;
|
||
}
|
||
</style>
|
||
<% email_set = ApplicationFormMain.find(@data['application_form_id']).application_form_email_sets.select{|v| v.field_name == 'add_file'}
|
||
signup = ApplicationFormSignup.find(@data['signup_id'])
|
||
%>
|
||
<% if email_set.length != 0 %>
|
||
<% if !(email_set[0].content.nil?) %>
|
||
<%= email_set[0].content[@data['locale']].html_safe %>
|
||
<% end %>
|
||
<% else %>
|
||
<%= t('application_form.email_add_file_content') %>
|
||
<% end %>
|
||
<hr class="dashed_style">
|
||
<%= t('application_form.denied_stage')%>: <%= t("application_form.num.#{signup.process_stage}") + t('application_form.stage_review') %>
|
||
<hr class="dashed_style">
|
||
<%= (@data['extra_text'] rescue "").to_s.html_safe %> |