Sha256: b111a695edd676745e4766f948ac1af76744413446a8a63210142f1d3cc71c06
Contents?: true
Size: 609 Bytes
Versions: 4
Compression:
Stored size: 609 Bytes
Contents
<h1><%=@model.capitalize%></h1> <table> <tr> <th>Id</th> <% @attributes.each { | f | %> <th><%= f.name %></th><% } %> </tr> <?php foreach ($<%=@model.downcase%> as $object) { ?> <tr> <td><?php echo $object->id ?></td> <% @attributes.each { | f | %> <td><?php echo $object-><%= f.name %> ?></td><% } %> <td><?php echo anchor('/<%=@model.downcase%>/edit/'.$object->id, 'Edit'); ?></td> <td><?php echo anchor('/<%=@model.downcase%>/destroy/'.$object->id, 'Destroy'); ?></td> </tr> <?php } ?> </table> <?php echo anchor('/<%=@model.downcase%>/create','Create'); ?>
Version data entries
4 entries across 4 versions & 1 rubygems