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

📄 list.rhtml

📁 A Hotel Management System based on Ruby on Rails.
💻 RHTML
字号:
<h1>Listing notes for <%= @customer.name %></h1><table>  <tr>  <% for column in Note.content_columns %>    <th><%= column.human_name %></th>  <% end %>  </tr>  <% for note in @notes %>  <tr>  <% for column in Note.content_columns %>    <td><%=h note.send(column.name) %></td>  <% end %>        <td><%= link_to 'Destroy', { :action => 'destroy', :id => note, :customer_id => @customer.id }, :confirm => 'Are you sure?' %>    </td>  </tr><% end %></table><%= link_to 'Previous page', { :page => @note_pages.current.previous } if @note_pages.current.previous %><%= link_to 'Next page', { :page => @note_pages.current.next } if @note_pages.current.next %> <br /><%= link_to 'New note', :action => 'new', :customer_id => @customer.id %> | <%= link_to 'Customer Details', :action => 'show', :controller => 'customer', :id => @customer.id %>

⌨️ 快捷键说明

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