socialforge/app/views/contests/_list_softapplications.html...

42 lines
1.2 KiB
Plaintext
Raw Normal View History

<% contesting_softapplication.each do |c_softapplication|%>
<% if c_softapplication.softapplication %>
<table width="90%" border="0" align='center'>
<tr>
<td>
<table width="660px" border="0" align='center'>
<tr>
<td width="65%" valign="top">
<table width="100%" valign="top" align="left">
<tr>
<td colspan="2" valign="top" width="50%">
<strong>
<%= link_to(c_softapplication.softapplication.name, softapplication_path(c_softapplication.softapplication)) %>
</strong>
<span class="font_lighter"><%= l(:label_joined_contest)%></span>
</td>
</tr>
<tr>
<td valign="top" width="50%" style=" word-wrap: break-word; word-break: break-all"><%= c_softapplication.softapplication.description %></td>
</tr>
<tr>
<td valign="top"><span class="font_lighter">
<%=format_time c_softapplication.created_at %>
</span></td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<% end %>
<% end %>
<div class="pagination"><%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %></div>