2013-08-16 22:53:28 +08:00
|
|
|
<!-- fq -->
|
|
|
|
<h3><%= l(:label_user_response) %></h3>
|
|
|
|
<% if @jour.size >0 %>
|
|
|
|
|
|
|
|
<% for journal in @jour%>
|
|
|
|
<table width="660px" border="0" align="center">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" valign="top" width="50" ><%= link_to image_tag(url_to_avatar(journal.user), :class => "avatar"), user_path(journal.user), :class => "avatar" %></td>
|
|
|
|
<td><table width="580px" border="0">
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" valign="top"><strong> <%=link_to journal.user, user_path(journal.user)%></strong>
|
2013-08-17 10:27:38 +08:00
|
|
|
<span class="font_lighter">对项目进行了反馈</span>
|
2013-08-16 22:53:28 +08:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td colspan="2" width="580px" ><p class="font_description"><%= textilizable journal.notes%></p></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td align="left"><span class="font_lighter"> <%= format_time journal.created_on %></span></td>
|
|
|
|
<td width="200" align="right" class="a">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</table></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
<div class="line_under"></div>
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<div class="pagination" style="float:left;">
|
|
|
|
<ul>
|
|
|
|
<%= pagination_links_full @feedback_pages %>
|
|
|
|
<ul>
|
|
|
|
</div>
|