Sha256: 908b1c1e561dd020898094300ae544d08eefd742766bae859b2ae4f86fab130d

Contents?: true

Size: 639 Bytes

Versions: 1

Compression:

Stored size: 639 Bytes

Contents

<h1>Listing templates</h1>

<table>
  <tr>
    <th>Template name</th>
    <th>Content</th>
    <th></th>
    <th></th>
    <th></th>
  </tr>

<% @templates.each do |template| %>
  <tr>
    <td><%= template.template_name %></td>
    <td><%= template.content %></td>
    <td><%= link_to 'Show', template %></td>
    <% unless readonly %>
      <td><%= link_to 'Edit', edit_template_path(template) %></td>
      <td><%= link_to 'Destroy', template, method: :delete, data: { confirm: 'Are you sure?' } %></td>
    <% end %>
  </tr>
<% end %>
</table>

<br />

<% unless readonly %>
  <%= link_to 'New Template', new_template_path %>
<% end %>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
stachio-0.0.3 app/views/stachio/templates/index.html.erb