<h3> <%=l(:label_message_plural)%> </h3> <%= render 'tab_messages' %> <h4><%=l(:label_borad_project) %></h4> <div class="autoscroll"> <table class="list" style="width: 100%;table-layout: fixed"> <thead> <tr> <th style="width: 30px;"> 序号 </th> <th style="width: 30px;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" title="来源(项目ID)"> 来源(项目ID) </th> <th style="width: 50px;"> 作者 </th> <th style="width: 70px;"> 时间 </th> <th style="width: 120px;"> 标题 </th> <th style="width: 30px;"> 回复数 </th> </tr> </thead> <tbody> <% @count=@page * 30 %> <% for project in @project_ms -%> <% @count=@count + 1 %> <tr class="<%= cycle("odd", "even") %>"> <td style="text-align: center;"> <%= @count %> </td> <td align="center"> <%= Board.where('id=?',project.board_id).first.project_id %> </td> <td align="center" style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name" title='<% if project.try(:author).try(:realname) == ' '%><%= project.try(:author)%><% else %><%=project.try(:author).try(:realname) %><% end %>'> <% if project.try(:author).try(:realname) == ' '%> <%= link_to(project.try(:author), user_path(project.author)) %> <% else %> <%= link_to(project.try(:author).try(:realname), user_path(project.author)) %> <% end %> </td> <td class="center"> <%= format_date(project.created_on) %> </td> <td title='<%=project.subject %>' style="white-space: nowrap;overflow: hidden;text-overflow: ellipsis;" class="name"> <%= link_to(project.subject, project_boards_path(Board.where('id=?',project.board_id).first.project_id)) %> </td> <td class="center"> <%= link_to(project.replies_count, project_boards_path(Board.where('id=?',project.board_id).first.project_id)) %> </td> </tr> <% end %> </tbody> </table> </div> <div class="pagination"> <%= pagination_links_full @obj_pages, @obj_count, :per_page_links => false %> </div> <% html_title(l(:label_message_plural)) -%>