Sha256: 1b8ddd332b6a3ed399c59989817fdbd4e6e4b7dcdfa143d5030e18600998f246

Contents?: true

Size: 632 Bytes

Versions: 3

Compression:

Stored size: 632 Bytes

Contents

<p><a href="{{path}}/_show/<%= model_name %>/">New <%= model_name.humanize %></a></p>
<table>
  <tr>
    <th>ID</th>
<% attributes.each do |attribute| -%>
    <th><%= attribute.humanize %></th>
<% end -%>
    <th></th>
    <th></th>
    <th></th>
  </tr>
{{#rows}}
  <tr>
    <td>{{id}}</td>
<% attributes.each do |attribute| -%>
    <td>{{<%= attribute %>}}</td>
<% end -%>
    <td><a href="{{path}}/_show/<%= model_name %>/{{id}}">Show</a></td>
    <td><a href="{{path}}/_show/<%= model_name %>/{{id}}?edit">Edit</a></td>
    <td><a href="{{path}}/_show/<%= model_name %>/{{id}}?delete">Delete</a></td>
  </tr>
{{/rows}}
</table>

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
rid-0.5.2 lib/rid/generators/list/templates/index.mustache
rid-0.5.1 lib/rid/generators/list/templates/index.mustache
rid-0.5.0 lib/rid/generators/list/templates/index.mustache