Sha256: ee4cd8340ad753a98d8c9992c01175d9ff9704d8d7ff232a695cda650736b3f4
Contents?: true
Size: 787 Bytes
Versions: 9
Compression:
Stored size: 787 Bytes
Contents
<table> <tr> <th class="first"><%= _("Name")%></th> <th><% _("Description")%></th> <th><%= _("Markup")%></th> <th><%= _("Filters")%></th> <th><%= _("Edit")%></th> <th class="last"><%= _("Delete") %></th> </tr> <% for textfilter in @textfilters.sort_by { |f| f.name } %> <tr <%= alternate_class %>> <td class="first"><%= link_to textfilter.name, {:action => "show", :id => textfilter.id} %> </td> <td><%=h textfilter.description %></td> <td><%=h @textfilter_map[textfilter.markup].display_name %></td> <td><%= textfilter.filters.collect { |f| h(@textfilter_map[f.to_s].display_name) }.join(" → ") %></td> <td class="operation"><%= link_to_edit textfilter %></td> <td class="operation last"><%= link_to_destroy textfilter %></td> </tr> <% end %> </table>
Version data entries
9 entries across 9 versions & 1 rubygems