Sha256: e97fa16e6819ec72231a6a24a531aa95767ccf6a52898ece6d62e65851d28717

Contents?: true

Size: 916 Bytes

Versions: 8

Compression:

Stored size: 916 Bytes

Contents

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

<h1>Listing Publishers</h1>

<table>
  <thead>
    <tr>
      <th>Name</th>
      <th>Url</th>
      <th>Description</th>
      <th>Email</th>
      <th>Category</th>
      <th>Epom</th>
      <th colspan="3"></th>
    </tr>
  </thead>

  <tbody>
    <% @publishers.each do |publisher| %>
      <tr>
        <td><%= publisher.name %></td>
        <td><%= publisher.url %></td>
        <td><%= publisher.description %></td>
        <td><%= publisher.email %></td>
        <td><%= publisher.category_id %></td>
        <td><%= publisher.epom_id %></td>
        <td><%= link_to 'Show', publisher %></td>
        <td><%= link_to 'Edit', edit_publisher_path(publisher) %></td>
        <td><%= link_to 'Destroy', publisher, method: :delete, data: { confirm: 'Are you sure?' } %></td>
      </tr>
    <% end %>
  </tbody>
</table>

<br>

<%= link_to 'New Publisher', new_publisher_path %>

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
epom_rails-1.4.4 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.4.2 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.4.1 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.4.0 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.3.6 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.3.5 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.3.2 test/dummy/app/views/publishers/index.html.erb
epom_rails-1.0.0 test/dummy/app/views/publishers/index.html.erb