2016-06-29 06:57:45 +00:00
|
|
|
<% # encoding: utf-8 %>
|
2019-10-29 15:14:20 +00:00
|
|
|
<% @@session = session %>
|
|
|
|
<%= yield %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<%
|
|
|
|
data = action_data
|
|
|
|
@seminar = data["seminar"]
|
|
|
|
@seminar_signup = data["seminar_signup"]
|
|
|
|
@time_now = data["time_now"]
|
2021-03-26 03:55:59 +00:00
|
|
|
data1 = @seminar.seminar_submission_field_sets.select{|v| v.field_name=='title'}[0]
|
|
|
|
data2 = @seminar.seminar_submission_field_sets.select{|v| v.field_name=='description'}[0]
|
|
|
|
data3 = @seminar.seminar_submission_field_sets.select{|v| v.field_name=='file'}[0]
|
|
|
|
show1 = !(data1.disabled) rescue false
|
|
|
|
show2 = !(data2.disabled) rescue false
|
|
|
|
show3 = !(data3.disabled) rescue false
|
|
|
|
name1 = data1['name'][I18n.locale]
|
|
|
|
name2 = data2['name'][I18n.locale]
|
|
|
|
name3 = data3['name'][I18n.locale]
|
2021-04-24 10:41:50 +00:00
|
|
|
seminar_submission_field = @seminar.seminar_submission_fields.where(:markup=>"seminar_preferred_session").first
|
2016-06-29 06:57:45 +00:00
|
|
|
%>
|
|
|
|
<% if @seminar.contribute_start_date <= @time_now and ( @seminar.contribute_end_date.nil? or @seminar.contribute_end_date+1 >= @time_now ) %>
|
2021-03-24 13:06:49 +00:00
|
|
|
<% begin %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<% if !session[:seminar_signup_id].blank? %>
|
2021-03-29 14:51:41 +00:00
|
|
|
<%=t('seminar_signup.serial_number') %>: <%=@seminar_signup.display_serial_number rescue ""%>
|
2016-06-29 06:57:45 +00:00
|
|
|
<a href="<%= OrbitHelper.url_to_show(@seminar.to_param) %>?method=con_logout&con_no=<%= @seminar.id %>" class='btn btn-primary'><%= t('seminar_signup.logout') %></a>
|
|
|
|
|
|
|
|
<table class="table table-hover table-striped seminar-index">
|
|
|
|
<caption>
|
|
|
|
<h3><%= @seminar.title %></h3>
|
|
|
|
</caption>
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2021-03-26 03:55:59 +00:00
|
|
|
<% if show1 %>
|
|
|
|
<th class="col-md-2"><%= name1 %></th>
|
|
|
|
<% end %>
|
|
|
|
<% if show2 %>
|
|
|
|
<th class="col-md-2"><%= name2 %></th>
|
|
|
|
<% end %>
|
|
|
|
<% if show3 %>
|
|
|
|
<th class="col-md-2"><%= name3 %></th>
|
|
|
|
<% end %>
|
2021-04-24 10:41:50 +00:00
|
|
|
<% if seminar_submission_field %>
|
|
|
|
<th class="col-md-2"><%= seminar_submission_field.title %></th>
|
|
|
|
<% end %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<th class="col-md-2"><%= t(:action) %></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<%
|
|
|
|
@seminar_signup.seminar_signup_contributes.each do |seminar_signup_contribute|
|
|
|
|
%>
|
|
|
|
<tr>
|
|
|
|
<td><%= seminar_signup_contribute.title %></td>
|
2021-03-24 13:06:49 +00:00
|
|
|
<% description = seminar_signup_contribute.description.to_s %>
|
|
|
|
<% if @seminar.enable_summary_choice
|
|
|
|
if (seminar_signup_contribute.description.to_s.to_i.to_s == seminar_signup_contribute.description)
|
|
|
|
description = @seminar.summary_chioices[seminar_signup_contribute.description.to_i] rescue seminar_signup_contribute.description
|
|
|
|
else
|
|
|
|
description = seminar_signup_contribute.description.map{|i| @seminar.summary_chioices[i.to_i] rescue "" }.join("<br>") rescue seminar_signup_contribute.description
|
|
|
|
end
|
|
|
|
end %>
|
|
|
|
<td><%= description.html_safe %></td>
|
|
|
|
<td><%= link_to File.basename(seminar_signup_contribute.file.path), seminar_signup_contribute.file.url, {:target => '_blank', :title => Nokogiri::HTML(description.gsub("<br>"," , ")).text} if seminar_signup_contribute.file.file %></td>
|
2021-04-24 10:41:50 +00:00
|
|
|
<% if seminar_submission_field %>
|
|
|
|
<td><%= seminar_signup_contribute.seminar_submission_values.where(:seminar_submission_field=>seminar_submission_field).first.get_value_by_locale(I18n.locale) %></td>
|
|
|
|
<% end %>
|
2016-06-29 06:57:45 +00:00
|
|
|
<td>
|
|
|
|
<%= link_to t(:edit), OrbitHelper.url_to_show(@seminar.to_param) + '?method=edit_file&con_no=' + seminar_signup_contribute.id, :class => 'btn btn-primary' %>
|
|
|
|
<form method="post" action="<%= del_file_seminars_path %>">
|
|
|
|
<%= submit_tag t(:delete_), class: "btn btn-primary" %>
|
|
|
|
<input type="hidden" name="referer_url" value="<%= request.original_url.split(request.env["HTTP_HOST"]).last.split('?').first %>">
|
|
|
|
<input type="hidden" name="con_no" value="<%= seminar_signup_contribute.id %>">
|
|
|
|
</form>
|
|
|
|
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<% end %>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
<% if ( @seminar.contribute_file_count.blank? or @seminar_signup.seminar_signup_contributes.count < @seminar.contribute_file_count.to_i ) %>
|
|
|
|
|
2021-03-24 13:06:49 +00:00
|
|
|
<%= link_to content_tag(:i, nil, :class => 'icon-plus') +' '+ t('seminar_signup.new_'), OrbitHelper.url_to_show(@seminar.to_param) + '?method=add_file', :class => 'btn btn-primary' %>
|
2016-06-29 06:57:45 +00:00
|
|
|
|
|
|
|
<% end %>
|
|
|
|
<br />
|
|
|
|
<br />
|
2019-11-26 15:52:52 +00:00
|
|
|
<!-- 檔案上限: <%#= @seminar.contribute_file_count.blank? ? '無' : @seminar.contribute_file_count %> -->
|
2016-06-29 06:57:45 +00:00
|
|
|
|
|
|
|
<% else %>
|
|
|
|
|
|
|
|
請先登入
|
|
|
|
<br />
|
|
|
|
<a href="<%= page_for_seminar_url %>">回列表頁</a>
|
|
|
|
|
|
|
|
<% end %>
|
2021-03-24 13:06:49 +00:00
|
|
|
<%
|
|
|
|
rescue => e
|
|
|
|
puts e
|
|
|
|
end%>
|
2016-06-29 06:57:45 +00:00
|
|
|
<% else %>
|
|
|
|
|
|
|
|
已截止
|
|
|
|
|
|
|
|
<% end %>
|
2019-11-26 15:52:52 +00:00
|
|
|
|