2014-05-21 09:45:16 +08:00
|
|
|
|
<%= render :partial => 'layouts/base_softapplication_top_content' %>
|
2014-04-11 17:16:22 +08:00
|
|
|
|
|
2014-05-21 11:34:04 +08:00
|
|
|
|
|
2014-04-04 17:54:20 +08:00
|
|
|
|
|
2014-04-22 08:49:08 +08:00
|
|
|
|
<div style="height: auto; padding-bottom: 10px">
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<tr>
|
|
|
|
|
<td colspan="2" valign="top" width="320">
|
|
|
|
|
</td>
|
|
|
|
|
<td>
|
|
|
|
|
<table width="100%" border="0">
|
|
|
|
|
<tr style="font-size: 18px">
|
|
|
|
|
<td colspan="2" valign="top"><strong><%= @softapplication.name %></strong></td>
|
|
|
|
|
<td style="font-size: 15px; padding-left: 0px">
|
|
|
|
|
<%= link_to '删除', softapplication_path(@softapplication), method: :delete, data: {confirm: '您确定要删除吗?'} if @softapplication.destroyable_by? User.current %>
|
|
|
|
|
<%= link_to '编辑', edit_softapplication_path(@softapplication), method: :get if @softapplication.destroyable_by? User.current %>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<td style="width: 570px; padding-left:40px; word-wrap: break-word; word-break: break-all"><%=l(:label_attendingcontestwork_belongs_type)%>:<%= @softapplication.app_type_name %></td>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<% contest = @softapplication.contests.first %>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<td style="width: 240px; word-wrap: break-word; word-break: break-all"><%=l(:label_attendingcontestwork_belongs_contest)%>:<%= contest ? link_to(contest.name, show_attendingcontest_contest_path(contest)) : '尚未加入竞赛' %></td>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<td style="padding-left: 40px"><%=l(:label_attendingcontestwork_release_person)%>:<%= @softapplication.user.name %></td>
|
|
|
|
|
<td><%=l(:label_attendingcontestwork_adaptive_system)%>:<%= @softapplication.android_min_version_available %></td>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
</tr>
|
|
|
|
|
<tr>
|
|
|
|
|
<td style="padding-left: 40px">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<span><%=l(:label_attendingcontestwork_download)%>:</span>
|
2014-04-24 20:44:35 +08:00
|
|
|
|
<span>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<% options = {:author => true, :deletable => @softapplication.user.eql?(User.current)} %><%= render :partial => 'attachments/app_link', :locals => {:attachments => @app_items, :options => options} %>
|
2014-04-24 20:44:35 +08:00
|
|
|
|
</span>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
</td>
|
2014-04-18 16:35:48 +08:00
|
|
|
|
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<td><%=l(:label_attendingcontestwork_developers)%>:<%= @softapplication.application_developers %></td>
|
2014-04-14 09:50:36 +08:00
|
|
|
|
</tr>
|
2014-04-21 15:41:51 +08:00
|
|
|
|
<tr>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<td style="padding-left: 40px"><%=l(:label_attendingcontestwork_average_scores)%>: <%= rating_for @softapplication, :static => true, dimension: :quality, class: 'rateable div_inline' %></td>
|
|
|
|
|
<td><%=l(:label_attendingcontestwork_release_time)%>:<%=format_time @softapplication.created_at %></td>
|
2014-04-21 15:41:51 +08:00
|
|
|
|
</tr>
|
2014-05-13 16:49:23 +08:00
|
|
|
|
<tr>
|
2014-05-15 10:25:24 +08:00
|
|
|
|
<td style="padding-left: 40px">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<% if @project %>
|
2014-05-26 19:51:20 +08:00
|
|
|
|
<%=l(:label_attendingcontestwork_deposit_project)%>:<%= link_to "#@project", project_path(@project) %>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<% end %>
|
2014-05-15 10:25:24 +08:00
|
|
|
|
</td>
|
2014-05-13 16:49:23 +08:00
|
|
|
|
</tr>
|
2014-04-09 11:14:54 +08:00
|
|
|
|
</table>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="underline-contests_one"></div>
|
|
|
|
|
|
2014-04-22 08:49:08 +08:00
|
|
|
|
<div style="height: auto; padding-bottom: 10px">
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<strong>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div style="font-size: 15px;"><%=l(:label_work_description)%>:</div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
</strong>
|
|
|
|
|
|
|
|
|
|
<div style="padding-top: 5px"><%= @softapplication.description %></div>
|
2014-04-09 11:14:54 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="underline-contests_one"></div>
|
|
|
|
|
|
2014-04-30 11:34:04 +08:00
|
|
|
|
<div style="height: auto; padding-bottom: 10px">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div style="font-size: 15px;"><strong><%=l(:label_work_scores)%>:</strong></div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<!-- <div>打分总人数:<%= @softapplication.raters(:quality).count %></div> -->
|
|
|
|
|
<div style="overflow: hidden">
|
|
|
|
|
<div style="margin-left: 15%; float: left">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div style="padding-left: 45px; padding-bottom: 5px"><%=l(:label_work_scores_proportion)%></div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<div>
|
|
|
|
|
<% 100.step(20, -20) do |star| %>
|
|
|
|
|
<div data-kls="Softapplication" data-id="2" data-dimension="quality" data-average="3.25" class="rateable div_inline jDisabled" style="height: 20px; width: 115px; overflow: hidden; z-index: 1; position: relative;">
|
|
|
|
|
<div class="jRatingColor" style="width: <%=star%>%;"></div>
|
|
|
|
|
<div class="jRatingAverage" style="width: 0px; top: -20px;"></div>
|
|
|
|
|
<div class="jStar" style="width: 115px; height: 20px; top: -40px; background: url(/images/seems_rateable/stars.png) repeat-x scroll 0% 0% transparent;">
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<%= @stars_status_map["star#{(star/20).to_s}".to_sym] %>
|
|
|
|
|
<br>
|
|
|
|
|
<% end %>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="float: left; padding-left: 100px; padding-top:35px " align="center">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div><%=l(:label_final_scores)%></div>
|
|
|
|
|
<div style="padding-top: 1px; font-size: 15px; color: blue"><%= @softapplication.average(:quality).try(:avg).try(:round, 2).to_i.to_s %>分</div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<div><%= rating_for @softapplication, :static => true, dimension: :quality, class: 'rateable div_inline' %></div>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="float: left; padding-left: 100px; padding-top:35px;" align="center">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div><%=l(:label_rating_person_amount)%></div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<div style="padding-top: 1px; font-size: 25px; color: blue;">
|
|
|
|
|
<strong><%= @softapplication.raters(:quality).count %></strong></div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-04-30 11:34:04 +08:00
|
|
|
|
</div>
|
|
|
|
|
<div class="underline-contests_one"></div>
|
|
|
|
|
|
2014-04-30 16:46:24 +08:00
|
|
|
|
<div style="height: auto; padding-bottom: 10px">
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<strong>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div style="font-size: 15px"><%=l(:label_work_photo)%>:</div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
</strong>
|
|
|
|
|
|
|
|
|
|
<div class="softapplication-img" >
|
|
|
|
|
<ul>
|
|
|
|
|
<% @image_results.take(4).each do |attachment| %>
|
|
|
|
|
<li>
|
|
|
|
|
<div class="title"><a href="#"><%= attachment.filename.to_s -%></a></div>
|
|
|
|
|
<%= link_to_attachment_img attachment, :class => "soft-application", :download => "true"%>
|
|
|
|
|
</li>
|
|
|
|
|
<% end %>
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
<div style='clear :left;'></div>
|
2014-04-09 11:14:54 +08:00
|
|
|
|
</div>
|
2014-04-11 17:16:22 +08:00
|
|
|
|
|
2014-04-09 11:14:54 +08:00
|
|
|
|
<div class="underline-contests_one"></div>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
|
2014-04-16 08:46:04 +08:00
|
|
|
|
<div style="height: 50px">
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div style="font-size: 15px"><strong><%=l(:label_work_comment)%>:</strong></div>
|
2014-05-23 10:51:07 +08:00
|
|
|
|
<% if (User.current.logged? and User.current.id != @softapplication.user_id) %>
|
2014-05-26 19:19:11 +08:00
|
|
|
|
<div style="padding-left: 210px"><%=l(:label_work_rating)%>: <%= rating_for @softapplication, dimension: :quality, class: 'rateable div_inline' %>
|
2014-05-26 19:51:20 +08:00
|
|
|
|
<span style="font-size: 11px">(<%=l(:label_attendingcontestwork_sorting_intimation)%>)</span></div>
|
2014-05-23 10:51:07 +08:00
|
|
|
|
<% end %>
|
2014-05-21 09:45:16 +08:00
|
|
|
|
|
2014-04-09 11:14:54 +08:00
|
|
|
|
</div>
|
2014-04-04 17:54:20 +08:00
|
|
|
|
|
2014-04-10 08:33:30 +08:00
|
|
|
|
<!--提示登录后对应用进行评价-->
|
|
|
|
|
<div id="history">
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<%= render :partial => 'message_history', :locals => {:contest => @softapplication, :journals => @jour, :state => false} %>
|
2014-04-10 08:33:30 +08:00
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
<!--分页-->
|
|
|
|
|
<div class="pagination" style="float:left;">
|
2014-05-21 09:45:16 +08:00
|
|
|
|
<ul>
|
|
|
|
|
<%= pagination_links_full @feedback_pages %>
|
|
|
|
|
</ul>
|
2014-04-10 08:33:30 +08:00
|
|
|
|
</div>
|
2014-04-04 17:54:20 +08:00
|
|
|
|
|
|
|
|
|
|
2014-04-10 08:33:30 +08:00
|
|
|
|
<div>
|
|
|
|
|
</div>
|