_blacklist_patterns.rhtml

来自「用ruby on rails写的一个博客程序,还不错..ruby on rail」· RHTML 代码 · 共 17 行

RHTML
17
字号
<table cellspacing="1" cellpadding="0"><tr>  <th><%= _("Pattern") %></th>  <th><%= _("Type") %></th>  <th><%= _("Edit") %></th>  <th><%= _("Delete")%></th></tr><% for blacklist_pattern in @blacklist_patterns -%><tr <%= alternate_class -%>>    <td class="field"><%= link_to h(blacklist_pattern.pattern), :action => "edit", :id => blacklist_pattern.id %></td>  <td class="field"><%= blacklist_pattern.class %></td>  <td class="operation"><%= link_to_edit blacklist_pattern %></td>  <td class="operation"><%= link_to_destroy blacklist_pattern %></td>    </tr>  <% end -%></table>

⌨️ 快捷键说明

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