Sha256: d5dd6a9f5d4adda184caf4e7c7d51abfd26791b1fecefe175223ae5144dfee49

Contents?: true

Size: 757 Bytes

Versions: 11

Compression:

Stored size: 757 Bytes

Contents

<h1>Posts</h1>

<form method="post" action="/admin/create">
  <input type="hidden" name="date" value="<%= Date.today.strftime %>"/>
  <input type="text" name="title" size="40"/>
  <input type="submit" value="Create post"/>
</form>

<hr/>

<table style="width:100%">
  <% for post in @posts[@page * @page_size, @page_size]  %>
    <tr>
      <td><%= post_link post %></td>
      <td><%= human_date post.date %></td>
      <td><%= link_to 'Edit', "/admin/edit/#{post.path}" %></td>
      <td><form method="post" action="/admin/delete/<%= post.path %>"><input type="submit" value="Delete"/></form></td>
    </tr>
  <% end %>
</table>

<%= render '_pagination.rhtml', :list => @posts, :page => @page, :page_size => @page_size, :path => '/admin/posts' %>

<hr/>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
georgi-shinmun-0.3.1 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.10 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.2 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.3 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.4 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.5 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.6 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.7 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.8 example/templates/admin/posts.rhtml
georgi-shinmun-0.3.9 example/templates/admin/posts.rhtml
georgi-shinmun-0.3 example/templates/admin/posts.rhtml