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