Sha256: ea18210d96db5a5e83a77f343f3e17a4bac21df84a84c552c497199a30917045
Contents?: true
Size: 900 Bytes
Versions: 6
Compression:
Stored size: 900 Bytes
Contents
<%= render :partial => 'admin/shared/configuration_menu' %> <div class='toolbar'> <ul class='actions'> <li> <%= button_link_to t("new_tax_category"), new_object_url, :icon => 'add' %></p> </li> </ul> <br class='clear' /> </div> <h1><%=t("listing_tax_categories")%></h1> <table class="index"> <thead> <tr> <th><%= t("name") %></th> <th><%= t("description") %></th> <th></th> </tr> </thead> <tbody> <% @tax_categories.each do |tax_category|%> <tr id="<%= dom_id tax_category %>"> <td><%= tax_category.name %></td> <td><%= tax_category.description %></td> <td class="actions"> <%=link_to_edit tax_category %> <%=link_to_delete tax_category %> </tr> <% end %> <% if @tax_categories.empty? %> <tr><td colspan="3">None.</td></tr> <% end %> </tbody> </table>
Version data entries
6 entries across 6 versions & 2 rubygems