⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 list.rhtml

📁 RubyonRailsC.zip ruby on rails的源码
💻 RHTML
字号:
<html>
  <head>
    <title>All Items</title>
  </head>
  
  <body>
    <h1>Online Book - All Items</h1>
    <table border="1">
      <tr>
        <td width="40%"><p align="center"><i><b>Item</b></i></td>
	<td width="20%"><p align="center"><i><b>Category</b></i></td>
	<td width="20%"><p align="center"><i><b>Date</b></i></td>
	<td width="20%"><p align="center"><i><b>Operation</b></i></td>
      </tr>
      <% @items.each do |item| %>
        <tr>
	  <td><%= link_to item.name, :action => "show", :id => item.id %></td>
	  <td><%= item.category.name %></td>
	  <td><%= item.date %></td>
	  <td>
	    <%= link_to "Show", :action => "show", :id => item.id %>
	    <%= link_to "Edit", :action => "edit", :id => item.id %>
	    <%= link_to "Destroy", :action => "destroy", :id => item.id %>
	  </td>
	</tr>
      <% end %>
    </table>
    <p>
      <%= link_to "Create new item", :action => "new" %>
    </p>
  </body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -