2014-04-04 17:54:20 +08:00
|
|
|
<!-- fq -->
|
|
|
|
<%= render_flash_messages %>
|
|
|
|
|
|
|
|
<table width="100%" border="0" style="padding-left: 15px">
|
2014-09-12 16:45:03 +08:00
|
|
|
<td width="15%" class="font_lighter" style="font-size: 15px;">
|
|
|
|
<%= l(:label_contest_softapplication) %>
|
|
|
|
(<%= @contest.contesting_softapplications.count%>)
|
|
|
|
</td> <!--标注参赛应用及数量-->
|
2014-04-04 17:54:20 +08:00
|
|
|
<% if User.current.logged? %>
|
|
|
|
<td width="85%">
|
|
|
|
<div class='icon icon-add'> <!--标注我要参加及添加图标-->
|
|
|
|
|
2014-09-12 16:45:03 +08:00
|
|
|
<%= link_to l(:button_contesting_as_application),
|
|
|
|
"javascript:void(0);",
|
|
|
|
onclick: "$('#put-bid-form').toggle();"
|
|
|
|
%>
|
2014-04-04 17:54:20 +08:00
|
|
|
</div>
|
|
|
|
</td>
|
|
|
|
<% end %>
|
|
|
|
</table>
|
2014-09-12 16:45:03 +08:00
|
|
|
<%= render :partial=> "list_softapplications",
|
|
|
|
:locals => {:contesting_softapplication => contesting_softapplication,
|
|
|
|
:contest => @contest }
|
|
|
|
%>
|