Sha256: 261023d418810becae16ea5dcc1e2d9e1ccf686b1b5f63e106875f730a3647e7

Contents?: true

Size: 773 Bytes

Versions: 2

Compression:

Stored size: 773 Bytes

Contents

<table cellspacing="1" cellpadding="0">
<tr>
  <th><%= _("Name")%></th>
  <th><% _("Description")%></th>
  <th><%= _("Markup")%></th>
  <th><%= _("Filters")%></th>
  <th><%= _("Edit")%></th>
  <th><%= _("Delete")%></th>
</tr>
<% for textfilter in @textfilters.sort_by { |f| f.name } %>
<tr <%= alternate_class %>>
  <td><%= 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(" &#8594; ") %></td>
  <td class="operation"><%= link_to_edit textfilter %></td>
  <td class="operation"><%= link_to_destroy textfilter %></td>    
</tr>  
<% end %>
</table>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
typo-4.1.1 app/views/admin/textfilters/_textfilters.rhtml
typo-4.1 app/views/admin/textfilters/_textfilters.rhtml