16 lines
631 B
Plaintext
16 lines
631 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_bidding_project) %>(<%= contesting_project.count%>)</td> <!--标注参与项目及数量-->
|
||
|
<% if User.current.logged? %>
|
||
|
<td width="85%">
|
||
|
<div class='icon icon-add'> <!--标注我要参加及添加图标-->
|
||
|
<%= toggle_link l(:button_contesting_as_project), 'put-bid-form' %>
|
||
|
</div>
|
||
|
</td>
|
||
|
<% end %>
|
||
|
</table>
|
||
|
|
||
|
<%= render :partial=> "list_projects",:locals => {:contesting_project => contesting_project,:contest => @contest }%>
|