Sha256: 7731b5ec30f35ed6e1b354481ed5b033160b6d77223eb93d88a896770a76bce5

Contents?: true

Size: 795 Bytes

Versions: 6

Compression:

Stored size: 795 Bytes

Contents

<h1>Listing templates</h1>

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

<% @templates.each do |template| %>
  <tr>
    <td style="border: 1px solid grey; padding: 1ex; margin: 1ex;"><%= template.template_name %></td>
    <td style="border: 1px solid grey; padding: 1ex; margin: 1ex;"><%= template.describe %></td>
    <td style="border: 1px solid grey; padding: 1ex; margin: 1ex;">
      <%= link_to 'Show', template %>
      <% unless readonly %>
        <%= link_to 'Edit', edit_template_path(template) %>
        <%= link_to 'Destroy', template, method: :delete, data: { confirm: 'Are you sure?' } %>
      <% end %>
    </td>
  </tr>
<% end %>
</table>

<br />

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

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
stachio-0.2.1 app/views/stachio/templates/index.html.erb
stachio-0.2.0 app/views/stachio/templates/index.html.erb
stachio-0.1.0 app/views/stachio/templates/index.html.erb
stachio-0.0.6 app/views/stachio/templates/index.html.erb
stachio-0.0.5 app/views/stachio/templates/index.html.erb
stachio-0.0.4 app/views/stachio/templates/index.html.erb