368 lines
15 KiB
Plaintext
368 lines
15 KiB
Plaintext
<style>
|
||
input[type="submit"].contest_btn {
|
||
vertical-align: middle;
|
||
width: 60px;
|
||
height: 30px;
|
||
line-height: 18px;
|
||
font-size: 14px;
|
||
color: rgb(0, 0, 0);
|
||
background: url("/images/button/bg103.jpg") no-repeat scroll left top transparent;
|
||
padding: 0px 0px 4px 0px;
|
||
border-radius: 2px;
|
||
border: 1px solid rgb(148, 148, 148);
|
||
box-shadow: none;
|
||
text-shadow: none;
|
||
margin-top: -10px;
|
||
/*margin-right: -4px;*/
|
||
}
|
||
|
||
input[type="button"].contest_btn {
|
||
width: 60px;
|
||
height: 30px;
|
||
line-height: 18px;
|
||
font-size: 14px;
|
||
color: rgb(0, 0, 0);
|
||
background: url("/images/button/bg103.jpg") no-repeat scroll left top transparent;
|
||
padding: 0px 0px 4px 0px;
|
||
border-radius: 2px;
|
||
border: 1px solid rgb(148, 148, 148);
|
||
box-shadow: none;
|
||
text-shadow: none;
|
||
margin-top: -10px;
|
||
margin-right: -2px;
|
||
}
|
||
|
||
textarea:focus {
|
||
border: #d5dee9 1px solid;
|
||
}
|
||
</style>
|
||
|
||
<script type="text/javascript" language="javascript">
|
||
function clearInfo(id, content) {
|
||
var text = $('#' + id);
|
||
if (text.val() == content) {
|
||
$('#' + id).val('');
|
||
}
|
||
}
|
||
|
||
function showInfo(id, content) {
|
||
var text = $('#' + id);
|
||
if (text.val() == '') {
|
||
$('#' + id).val(content);
|
||
}
|
||
}
|
||
|
||
function cancel() {
|
||
$("#put-bid-form").hide();
|
||
}
|
||
|
||
function cancel() {
|
||
$("#put-project-form").hide();
|
||
}
|
||
|
||
</script>
|
||
<%= render_flash_messages %>
|
||
<!--参赛步骤-->
|
||
<div style="padding-left: 23px; padding-bottom: 10px; color: grey; font-size: 12px">
|
||
<div><%= l(:label_wellmeaning_intimation_contentone) %></div>
|
||
<div style="margin-left: 59px; padding-top: 2px">1) <%= l(:label_wellmeaning_intimation_contenttwo) %></div>
|
||
<div style="margin-left: 59px; padding-top: 2px">2) <%= l(:label_wellmeaning_intimation_contentthree) %></div>
|
||
</div>
|
||
|
||
<% if User.current.logged? %>
|
||
<div style="padding-bottom: 10px; line-height: 15px">
|
||
<div style="padding-left: 82px; font-size: 14px">
|
||
<span><strong><%= l(:label_attending_contest) %>:</strong></span>
|
||
<span><%= link_to l(:label_new_attendingcontest_work), "javascript:void(0);", onclick: "$('#put-project-form').toggle();" %></span>
|
||
</div>
|
||
</div>
|
||
<% else %>
|
||
<div style="font-size: 14px;margin:10px;padding-left: 73px">
|
||
<%= l(:label_user_login_attending_contest) %>
|
||
<%= link_to l(:label_user_login_new), signin_path %>
|
||
</div>
|
||
<% end %>
|
||
|
||
<!--点击新建参赛作品弹出框新建参赛作品并关联到竞赛中-->
|
||
<div id="put-project-form" style="display: none; padding-left: 83px; width: 88%">
|
||
<%= form_for Softapplication.new, :url => softapplications_path do |f| %>
|
||
<fieldset class="contes-new-box" style="padding-left: 36px; line-height: 8px; margin-left: 1px" >
|
||
<%= hidden_field_tag 'contest_id', @contest.id %>
|
||
<tr style="width:700px; margin-left: -10px;">
|
||
<span><%= l(:label_work_name) %></span>
|
||
<span class="contest-star"> * </span>:
|
||
<td><%= f.text_field :name, :required => true, :size => 60, :style => "width:400px;" %></td>
|
||
<span style="font-size: 10px">(<%= l(:label_workname_lengthlimit) %>)</span>
|
||
</tr>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
|
||
<tr style="width:800px;">
|
||
<span><%= l(:label_running_platform) %></span>
|
||
<span class="contest-star"> * </span>:
|
||
<td style="width: 100px"><%= f.text_field :android_min_version_available, :required => true, :size => 60, :style => "width:400px;" %></td>
|
||
|
||
</tr>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
|
||
<tr style="width:800px;">
|
||
<span><%= l(:label_work_type) %></span>
|
||
|
||
<span class="contest-star"> * </span>:
|
||
<td style="width: 100px"><%= f.text_field :app_type_name, :required => true, :size => 60, :style => "width:400px;" %></td>
|
||
|
||
</tr>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
|
||
<tr style="width:800px;">
|
||
<span><%= l(:label_work_description) %></span>
|
||
<span class="contest-star"> * </span>:
|
||
<td style="width: 100px"><%= f.text_field :description, :required => true, :size => 60, :style => "width:400px;" %></td>
|
||
<span style="font-size: 10px">(<%= l(:label_workdescription_lengthlimit) %>)</span>
|
||
</tr>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
|
||
<tr style="width:800px;">
|
||
<span><%= l(:label_softapplication_developers) %></span>
|
||
<span class="contest-star"> * </span>:
|
||
<td style="width: 100px"><%= f.text_field :application_developers, :required => true, :size => 60, :style => "width:400px;" %></td>
|
||
|
||
</tr>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
|
||
<tr style="width:800px;">
|
||
<span><%= l(:label_work_deposit_project) %>:</span>
|
||
<span style="padding-left: 4px"><%= select_tag 'project', options_for_select(select_option_helper(@option)), :name => 'project', :class => 'grayline2' %></span>
|
||
<span><%= link_to l(:label_create_new_projects), new_project_path(course: 0, project_type: 0), :target => '_blank' %></span>
|
||
</tr>
|
||
<br/>
|
||
<br/>
|
||
<br/>
|
||
|
||
<fieldset style="width: 500px; padding-top: 10px">
|
||
<legend>
|
||
<%= l(:label_upload_softworkpacket_photo) %>
|
||
</legend>
|
||
<%#= render_flash_messages %>
|
||
<p id="put-bid-form-partial">
|
||
<%= render :partial => 'attachments/form' %>
|
||
</p>
|
||
|
||
<p style="font-size: 11px">
|
||
1、<%= l(:label_upload_softapplication_packets_mustpacketed) %> <br/>
|
||
<br>
|
||
2、<%= l(:label_upload_softapplication_photo_condition) %>
|
||
</p>
|
||
|
||
</fieldset>
|
||
</fieldset></br>
|
||
<div class="align-center" style="padding-top: -3px; padding-bottom: 8px">
|
||
<%= submit_tag l(:button_create) %>
|
||
<%= submit_tag l(:button_cancel), :name => nil, :onclick => "cancel();",
|
||
:type => 'button', :class => "enterprise", :onmouseout => "this.style.backgroundPosition = 'left top'",
|
||
:onmouseover => "this.style.backgroundPosition = 'left -30px'" %>
|
||
</div>
|
||
<% end %>
|
||
</div>
|
||
|
||
|
||
|
||
|
||
<div class="underline-contests_three"></div>
|
||
|
||
<!--参赛作品列表,通过判断,竞赛的id为2,3,6的显示参赛作品为提交的项目,否则显示参赛的应用-->
|
||
|
||
<% if @contest.id == 2 or @contest.id == 3 or @contest.id == 6 %>
|
||
|
||
<% @contesting_project.sort.reverse.each do |c_project| %>
|
||
<% if c_project.project %>
|
||
<div style="padding-left: 18px">
|
||
<div style="font-size: 15px">
|
||
<div>
|
||
<div><strong><%= l(:label_contest_work) %>
|
||
: <%= link_to(c_project.project.name, project_path(c_project.project), :target => '_blank') %> </strong>
|
||
|
||
<div style="float: right">
|
||
<td style="color: #ec6300;" align="right" valign="0.1em" width="16%">
|
||
<strong>
|
||
<span id="reward_result_<%= c_project.id %>"> <!-- 调用js进行刷新 -->
|
||
<% if get_prize(c_project).nil? or get_prize(c_project) == "" %>
|
||
<% if @contest.deadline < Date.today %>
|
||
<span style="color: red"><%= l(:label_noawards) %></span>
|
||
<% else %>
|
||
<span style="color: red"><%= l(:label_noawards_current) %></span>
|
||
<% end %>
|
||
<% else %>
|
||
<% case get_prize(c_project) %>
|
||
<% when '-1' %>
|
||
<%= image_tag("/images/bid/special_reward.png") %>
|
||
<% when '0' %>
|
||
<%= image_tag("/images/bid/first_reward.png") %>
|
||
<% when '1' %>
|
||
<%= image_tag("/images/bid/second_reward.png") %>
|
||
<% when '2' %>
|
||
<%= image_tag("/images/bid/third_reward.png") %>
|
||
<% when '3' %>
|
||
<%= image_tag("/images/bid/forth_reward.png") %>
|
||
<% when '4' %>
|
||
<%= image_tag("/images/bid/fifth_reward.png") %>
|
||
<% when '5' %>
|
||
<%= image_tag("/images/bid/qualified.png") %>
|
||
<% end %>
|
||
<% end %>
|
||
</span>
|
||
</strong>
|
||
</td>
|
||
|
||
<!-- 评价显隐控制按钮-->
|
||
<% if ((User.current.id == @contest.author_id) && (@contest.deadline > Date.today))||User.current.admin %>
|
||
<td valign="top" align="right" width="10%">
|
||
<span> <%= toggle_link l(:label_reward), c_project.id.to_s %></span>
|
||
<!-- 评价应标项目的表单 -->
|
||
<span style="display: none; vertical-align: top " id='<%= c_project.id %>'>
|
||
<%= form_for "set_reward_project", :remote => true, :url => set_reward_project_contest_path do |f| %>
|
||
<%= f.text_field :c_id, :style => "display:none", :value => c_project.id, :size => "0" %>
|
||
<%= f.select :reward, "<option value = '-1'>#{l(:label_special_reward)}</option>
|
||
<option value = '0'>#{l(:label_first_reward)}</option>
|
||
<option value = '1'>#{l(:label_second_reward)}</option>
|
||
<option value = '2'>#{l(:label_third_reward)}</option>
|
||
<option value = '3'>#{l(:label_fourth_reward)}</option>
|
||
<option value = '4'>#{l(:label_fifth_reward)}</option>
|
||
<option value = '5'>#{l(:label_comfort_reward)}</option>".html_safe %>
|
||
<%= f.submit :value => l(:button_submit), :class => "submit" %>
|
||
<% end %>
|
||
</span>
|
||
</td>
|
||
<% end %>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</br>
|
||
</div>
|
||
<div style="padding-left: 68px">
|
||
<tr>
|
||
<td><%= l(:label_profile) %>:</td>
|
||
<td> <%= c_project.project.description.truncate(90, omission: '...') %> </td>
|
||
</tr>
|
||
</br>
|
||
</div>
|
||
<div style="padding-left: 68px; padding-bottom: 8px">
|
||
<span><strong><%= l(:label_attendingcontest_time) %>
|
||
:</strong><%= format_time c_project.created_at %></span>
|
||
<span style="padding-left: 240px"><strong><%= l(:label_attendingcontest_spoksman) %>
|
||
:</strong><%= c_project.user.name %></span>
|
||
</div>
|
||
|
||
<div style="padding-left: 68px">
|
||
|
||
</div>
|
||
</div>
|
||
<% end %>
|
||
<div class="underline-contests_three"></div>
|
||
<% end %>
|
||
<% else %>
|
||
<% @contesting_softapplication.each do |c_softapplication| %>
|
||
<% if c_softapplication.softapplication %>
|
||
<div style="padding-left: 18px">
|
||
<div style="font-size: 15px">
|
||
<tr>
|
||
<td><strong><%= l(:label_contest_work) %>: </strong></td>
|
||
<td> <%= link_to(c_softapplication.softapplication.name, softapplication_path(c_softapplication.softapplication), :target => '_blank') %> </td>
|
||
</tr>
|
||
</br>
|
||
</div>
|
||
|
||
<div style="padding-left: 68px; padding-top: 5px">
|
||
<tr>
|
||
<td><strong><%= l(:label_profile) %>:</strong></td>
|
||
<td> <%= c_softapplication.softapplication.description.truncate(90, omission: '...') %> </td>
|
||
</tr>
|
||
</br>
|
||
</div>
|
||
|
||
<div style="padding-left: 68px; pading-bottom: 8px">
|
||
<span><strong><%= l(:label_attendingcontest_time) %>
|
||
:</strong><%= format_time c_softapplication.created_at %></span>
|
||
<span style="padding-left: 240px"><strong><%= l(:label_attendingcontest_spoksman) %>
|
||
:</strong><%= c_softapplication.softapplication.user.name %></span>
|
||
</div>
|
||
|
||
<!--获奖及教师评奖-->
|
||
<div style="padding-left: 18px; padding-bottom: 5px">
|
||
<span style="padding-left: 50px"><strong><%= l(:label_final_scores) %>
|
||
:</strong></span><span style="color: red"><%= c_softapplication.softapplication.average(:quality).try(:avg).try(:round, 2).to_i.to_s %>
|
||
分</span>
|
||
<span style="padding-left: 334px">
|
||
<td>
|
||
<strong>
|
||
<span id="reward_result_<%= c_softapplication.id %>"> <!-- 调用js进行刷新 -->
|
||
<% if get_prize(c_softapplication).nil? or get_prize(c_softapplication) == "" %>
|
||
<% if @contest.deadline < Date.today %>
|
||
<span style="color: red"><%= l(:label_noawards) %></span>
|
||
<% else %>
|
||
<span style="color: red"><%= l(:label_noawards_current) %></span>
|
||
<% end %>
|
||
<% else %>
|
||
<% case get_prize(c_softapplication) %>
|
||
<% when '-1' %>
|
||
<%= image_tag("/images/bid/special_reward.png") %>
|
||
<% when '0' %>
|
||
<%= image_tag("/images/bid/first_reward.png") %>
|
||
<% when '1' %>
|
||
<%= image_tag("/images/bid/second_reward.png") %>
|
||
<% when '2' %>
|
||
<%= image_tag("/images/bid/third_reward.png") %>
|
||
<% when '3' %>
|
||
<%= image_tag("/images/bid/forth_reward.png") %>
|
||
<% when '4' %>
|
||
<%= image_tag("/images/bid/fifth_reward.png") %>
|
||
<% when '5' %>
|
||
<%= image_tag("/images/bid/qualified.png") %>
|
||
<% end %>
|
||
<% end %>
|
||
</span>
|
||
</strong>
|
||
</td>
|
||
|
||
<!-- 评价显隐控制按钮-->
|
||
<% if ((User.current.id == @contest.author_id) && (@contest.deadline > Date.today))||User.current.admin %>
|
||
<div style="valign=" top" align="right" width="10%"">
|
||
<span style="padding-right: 5px; padding-top: 1px"> <%= toggle_link '评奖', c_softapplication.id.to_s %></span>
|
||
<!-- 评价应标项目的表单 -->
|
||
<span style="display: none; vertical-align: top " id='<%= c_softapplication.id %>'>
|
||
<%= form_for "set_reward_softapplication", :remote => true, :url => set_reward_softapplication_contest_path do |f| %>
|
||
<%= f.text_field :c_id, :style => "display:none", :value => c_softapplication.id, :size => "0" %>
|
||
<%= f.select :reward, "<option value = '-1'>#{l(:label_special_reward)}</option>
|
||
<option value = '0'>#{l(:label_first_reward)}</option>
|
||
<option value = '1'>#{l(:label_second_reward)}</option>
|
||
<option value = '2'>#{l(:label_third_reward)}</option>
|
||
<option value = '3'>#{l(:label_fourth_reward)}</option>
|
||
<option value = '4'>#{l(:label_fifth_reward)}</option>
|
||
<option value = '5'>#{l(:label_comfort_reward)}</option>".html_safe %>
|
||
<%= f.submit :value => l(:button_submit), :class => "submit" %>
|
||
<% end %>
|
||
</span>
|
||
</div>
|
||
<% end %>
|
||
</span>
|
||
</div>
|
||
</div>
|
||
<% end %>
|
||
<div class="underline-contests_three"></div>
|
||
<% end %>
|
||
<% end %>
|
||
|
||
<div class="pagination">
|
||
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %>
|
||
</div>
|
||
|