2014-04-14 09:50:36 +08:00
|
|
|
|
|
|
|
|
|
<% contesting_softapplication.each do |c_softapplication|%>
|
|
|
|
|
<% if c_softapplication.softapplication %>
|
2014-04-16 08:46:04 +08:00
|
|
|
|
<div style="padding-left: 18px">
|
|
|
|
|
<div style="font-size: 15px">
|
|
|
|
|
<tr>
|
2014-05-24 10:56:58 +08:00
|
|
|
|
<td><strong><%=l(:label_softapplication)%>:</strong></td>
|
2014-04-16 08:46:04 +08:00
|
|
|
|
<td>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<%= link_to(c_softapplication.softapplication.name,
|
|
|
|
|
softapplication_path(c_softapplication.softapplication),
|
|
|
|
|
:target => '_blank')
|
|
|
|
|
%>
|
2014-04-16 08:46:04 +08:00
|
|
|
|
</td>
|
|
|
|
|
</tr></br>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="padding-left: 68px">
|
2014-04-14 09:50:36 +08:00
|
|
|
|
<tr>
|
2014-05-24 10:56:58 +08:00
|
|
|
|
<td><%=l(:label_profile)%>:</td>
|
2014-04-14 09:50:36 +08:00
|
|
|
|
<td>
|
2014-04-29 08:37:57 +08:00
|
|
|
|
<%= c_softapplication.softapplication.description.truncate(90, omission: '...') %>
|
2014-04-14 09:50:36 +08:00
|
|
|
|
</td>
|
2014-04-16 08:46:04 +08:00
|
|
|
|
</tr></br>
|
|
|
|
|
</div>
|
|
|
|
|
<div style="padding-left: 68px; padding-bottom: 8px">
|
|
|
|
|
<tr>
|
2014-05-24 10:56:58 +08:00
|
|
|
|
<td><%=l(:label_activity_time)%>:</td>
|
2014-04-16 08:46:04 +08:00
|
|
|
|
<td>
|
|
|
|
|
<%=format_time c_softapplication.created_at %>
|
|
|
|
|
</td>
|
|
|
|
|
|
|
|
|
|
</tr>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2014-04-14 09:50:36 +08:00
|
|
|
|
<% end %>
|
2014-04-16 08:46:04 +08:00
|
|
|
|
<div class="underline-contests_three"></div>
|
2014-04-14 09:50:36 +08:00
|
|
|
|
<% end %>
|
2014-09-12 16:45:03 +08:00
|
|
|
|
<div class="pagination">
|
|
|
|
|
<%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %>
|
|
|
|
|
</div>
|
2014-04-14 09:50:36 +08:00
|
|
|
|
|