Sha256: 37a927101ea8bc001a59f569db63f88f0d9da999b365842a743ce2549f3afc4e

Contents?: true

Size: 661 Bytes

Versions: 13

Compression:

Stored size: 661 Bytes

Contents

<p id="notice"><%= notice %></p>

<h1>Listing Articles</h1>

<table>
  <thead>
    <tr>
      <th>Title</th>
      <th>Text</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @articles.each do |article| %>
      <tr>
        <td><%= article.title %></td>
        <td><%= article.text %></td>
        <td><%= link_to 'Show', article %></td>
        <td><%= link_to 'Edit', edit_article_path(article) %></td>
        <td><%= link_to 'Destroy', article, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Article', new_article_path %>

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
optimacms-0.3.35 app/views/optimacms/articles/index.html.erb
optimacms-0.3.34 app/views/optimacms/articles/index.html.erb
optimacms-0.3.30 app/views/optimacms/articles/index.html.erb
optimacms-0.3.29 app/views/optimacms/articles/index.html.erb
optimacms-0.3.23 app/views/optimacms/articles/index.html.erb
optimacms-0.3.15 app/views/optimacms/articles/index.html.erb
optimacms-0.3.12 app/views/optimacms/articles/index.html.erb
optimacms-0.3.11 app/views/optimacms/articles/index.html.erb
optimacms-0.2.26 app/views/optimacms/articles/index.html.erb
optimacms-0.2.25 app/views/optimacms/articles/index.html.erb
optimacms-0.2.24 app/views/optimacms/articles/index.html.erb
optimacms-0.3.4 app/views/optimacms/articles/index.html.erb
optimacms-0.3.3 app/views/optimacms/articles/index.html.erb