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

Version Path
cas-cms-1.0.0.alpha2 app/views/cas/sites/sections/categories/index.html.erb
cas-cms-1.0.0.alpha1 app/views/cas/sites/sections/categories/index.html.erb
cas-cms-0.1.3 app/views/cas/sites/sections/categories/index.html.erb
cas-cms-0.1.2 app/views/cas/sites/sections/categories/index.html.erb
cas-cms-0.1.1 app/views/cas/sites/sections/categories/index.html.erb