25 lines
854 B
Plaintext
25 lines
854 B
Plaintext
<h1 style="">文章列表</h1>
|
|
<div>
|
|
<table border="1px solid !important" >
|
|
<% @discuss_demo_list.each do |e| %>
|
|
|
|
<tr align="left" height="20">
|
|
<td width="30%" ><%= truncate(e.title,:length => 50) %></td>
|
|
<td align="center" width="60%">
|
|
<%= truncate(e.body,:length => 50) %>
|
|
</td>
|
|
<td style=" margin-right: 1" width="10%">
|
|
<%= link_to '查看文章',{:controller => 'discuss_demos',:action => 'show',:id=>e.id} %>
|
|
</td>
|
|
<td>
|
|
|
|
<%= link_to '删除文章',discuss_demo_path(e.id), :method => :delete,:confirm => l(:text_are_you_sure) %>
|
|
</td>
|
|
</tr>
|
|
<tr height="20"></tr>
|
|
<tr height="20"></tr>
|
|
<% end %>
|
|
</table>
|
|
<% paginate @discuss_demo_list %>
|
|
<%= link_to '新建文章',new_discuss_demo_path %>
|
|
</div> |