126 lines
4.9 KiB
Plaintext
126 lines
4.9 KiB
Plaintext
<%
|
||
ask_setting = @ask_setting
|
||
set_input_name('ask_question')
|
||
%>
|
||
<% content_for :page_specific_css do %>
|
||
<%= stylesheet_link_tag "lib/main-forms" %>
|
||
<%= stylesheet_link_tag "lib/main-list" %>
|
||
<%= stylesheet_link_tag "custom_field" %>
|
||
<% end %>
|
||
<%# javascript_include_tag "lib/bootstrap-datetimepicker.js" %>
|
||
<%# javascript_include_tag "//cdnjs.cloudflare.com/ajax/libs/jquery/1.11.0/jquery.min.js"%>
|
||
<%# javascript_include_tag "/assets/lib/jquery-ui-1.12.1/jquery-ui.min" %>
|
||
<%# javascript_include_tag "lib/module-area" %>
|
||
<%# javascript_include_tag "jquery.ui.datepicker.monthyearpicker" %>
|
||
<%# javascript_include_tag "lib/bootstrap-datetimepicker" %>
|
||
<style type="text/css">
|
||
.input-area tr td {
|
||
text-align: center;
|
||
}
|
||
.form-horizontal .control-label {
|
||
padding-top: 0;
|
||
}
|
||
</style>
|
||
<script type="text/javascript">
|
||
$(document).ready(function(){
|
||
$('input:file').change(function(e){
|
||
var fileName = e.target.files[0].name;
|
||
$(this).parents(".file-selector").eq(0).find('.filename').html(fileName);
|
||
})
|
||
$('input:file').each(function(i,v){
|
||
|
||
var filename = $(v).attr('value')
|
||
if (filename){
|
||
if ($(v).attr('data-image-src')){
|
||
$(v).parents(".file-selector").eq(0).find('.filename').html("<img src=\""+$(v).attr('data-image-src')+"\">"+filename);
|
||
}
|
||
else{
|
||
$(v).parents(".file-selector").eq(0).find('.filename').html("<a href=\""+$(v).attr('data-src')+"\">"+filename);
|
||
}
|
||
}
|
||
})
|
||
})
|
||
</script>
|
||
<div class="input-area">
|
||
<div id="ask-asks">
|
||
<table class="table">
|
||
<tr>
|
||
<td><%= AskQuestion.human_attribute_name(:name) %>:<%= @ask_question.name %></td>
|
||
<!-- <td><%# AskQuestion.human_attribute_name(:identity) %>:
|
||
<%# Tag.where({:id => @ask_question[:identity]}).each do |tag| %>
|
||
<%# tag.name %>
|
||
<%# end %>
|
||
</td> -->
|
||
<td><%= AskQuestion.human_attribute_name(:mail) %>:<%= @ask_question.mail %></td>
|
||
<td><%= AskQuestion.human_attribute_name(:phone) %>:<%= @ask_question.phone %></td>
|
||
<!-- <td><%# AskQuestion.human_attribute_name(:fax) %>:<%# @ask_question.fax %></td> -->
|
||
</tr>
|
||
<tr>
|
||
<td colspan="5"><%= t('title') %>:<%= @ask_question.title %></td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="5"><%= AskQuestion.human_attribute_name(:appointment) %>:<%= @ask_question.appointment.strftime("%Y-%m-%d %H:%M") rescue nil %></td>
|
||
<!-- <td colspan="5"><%# AskQuestion.human_attribute_name(:name) %>:<%# @ask_question.name %></td> -->
|
||
</tr>
|
||
<tr>
|
||
<!-- <td colspan="5"><%# AskQuestion.human_attribute_name(:name) %>:<br/><%# @ask_question.name.gsub(/[(\n)(\r)]/, "\n" => "<br/>", "\r" => "" ).html_safe %></td> -->
|
||
</tr>
|
||
|
||
<tr>
|
||
<td colspan="5">
|
||
<%= f.label :reply %>
|
||
<br/> <%= f.text_area :reply, rows: 10, style: 'width: 500px' %>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="5">
|
||
<%= f.label :comment %>
|
||
<br/> <%= @ask_question.comment %></td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="5"><%= f.label :agree_show %><%= @ask_question.agree_show ? t('ask.yes') : t('ask.no') %>
|
||
</td>
|
||
</tr>
|
||
<tr>
|
||
<td colspan="5"><%= f.label t('situation') %>
|
||
<%= f.select :situation, [
|
||
[t('ask.is_waiting'), 'is_waiting'],
|
||
[t('ask.is_processed'), 'is_processed'],
|
||
[t('ask.is_referral'), 'is_referral'],
|
||
[t('ask.is_published'),'is_published']
|
||
] %>
|
||
</td>
|
||
</tr>
|
||
|
||
<tr>
|
||
<td colspan="5">
|
||
<%= f.label :send_email %><%= f.radio_button :send_email, 1, checked: @ask_question.send_email? %><%= t('ask.yes') %>
|
||
|
||
<%= f.radio_button :send_email, 0, checked: !@ask_question.send_email? %><%= t('ask.no') %>
|
||
</td>
|
||
</tr>
|
||
</table>
|
||
<%= ask_setting.custom_fields.collect do |k,v|
|
||
required_pattern = v['required']=='true' ? '*' : ''
|
||
"<div class=\"control-group\">
|
||
<label class=\"control-label\">#{required_pattern}#{v['field'][I18n.locale]}</label>
|
||
<div class=\"controls\">
|
||
#{show_on_front(k,v,@ask_question.custom_values[k],true)}
|
||
</div>
|
||
</div>"
|
||
end.join.html_safe %>
|
||
</div>
|
||
</div>
|
||
<%
|
||
cancel_href = url_for(:back)
|
||
if cancel_href == 'javascript:history.back()'
|
||
now_ask_page = AskQuestion.order_by(:id).map(&:id).map.with_index.select{|v,i| v==@ask_question.id}[0][1] rescue nil
|
||
now_ask_page = now_ask_page.nil? ? 1 : ((now_ask_page+1).to_f/10).ceil
|
||
cancel_href = "/#{I18n.locale}/admin/asks?page=#{now_ask_page}"
|
||
end
|
||
%>
|
||
<div class="form-actions">
|
||
<%= f.submit t('submit'), class: 'btn btn-primary' %>
|
||
<%= link_to t('cancel'),cancel_href,title: t('cancel'),:class=> 'btn' %>
|
||
</div>
|