Sha256: 50108b62b03de9bc53abab6ebec5765bb781ae6cb929ee67ed3cb33389fe2e5d
Contents?: true
Size: 571 Bytes
Versions: 5
Compression:
Stored size: 571 Bytes
Contents
<p id="notice"><%= notice %></p> <h1>Categorias: <%= @section.name %></h1> <table> <thead> <tr> <th>Categoria</th> </tr> </thead> <tbody> <% @categories.each do |category| %> <tr> <td> <%= link_to category.name, cas.edit_site_section_category_path(@site, @section, category), id: "edit-category-#{category.id}" %> </td> </tr> <% end %> </tbody> </table> <br> <%= link_to 'Nova categoria', cas.new_site_section_category_path(@site, @section), id: 'new-category' %>
Version data entries
5 entries across 5 versions & 1 rubygems