Sha256: c1d0d16ba6c0614ac65545a263dfdfd129aaee53625a916a056db931743c91c2
Contents?: true
Size: 491 Bytes
Versions: 5
Compression:
Stored size: 491 Bytes
Contents
<div id="page_content"> <h2 id="page-title">Posts</h2> <div class="content"> #{a 'New Post', :new} </div> <table class="list"> <thead> <tr> <th>Title</th> <th class="actions">Actions</th> </tr> </thead> <tbody> <?r @posts.each do |post| ?> <tr> <td>#{a post.title, :edit, post.id}</td> <td>#{a 'Edit', :edit, post.id}, #{a 'Delete', :delete, post.id}</td> </tr> <?r end ?> </tbody> </table> </div>
Version data entries
5 entries across 5 versions & 1 rubygems