Sha256: d401d5d25f02ccb8d74f7d71a0ba8b9df638ba85da630f87a6c5e0eebd333839

Contents?: true

Size: 666 Bytes

Versions: 5

Compression:

Stored size: 666 Bytes

Contents

<h1>Listing Admin Site Item Tags</h1>

<table class="table">
  <thead>
    <tr>
      <th>Key</th>
      <th>Name</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @tags.each do |tag| %>
      <tr>
        <td><%= tag.name %></td>
        <td><%= tag.key %></td>
        <td>
          <%= link_to 'Edit', [:edit, :admin, tag] %>
        </td>
        <td>
          <%= link_to 'Destroy', [:admin, tag],
                      method: :delete, data: { confirm: 'Are you sure?' } %>
        </td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Site item tag',
    new_admin_site_item_tag_path, class: 'btn btn-primary' %>

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
rails-portfolio-0.0.5 app/views/portfolio/admin/site_item_tags/index.html.erb
rails-portfolio-0.0.4 app/views/portfolio/admin/site_item_tags/index.html.erb
rails-portfolio-0.0.3 app/views/portfolio/admin/site_item_tags/index.html.erb
rails-portfolio-0.0.2 app/views/portfolio/admin/site_item_tags/index.html.erb
rails-portfolio-0.0.1 app/views/portfolio/admin/site_item_tags/index.html.erb