Sha256: 01a2088f2d47f6648297f30ea32504e6d1a51eb82abfa9aed78e7442b2cff9c1

Contents?: true

Size: 989 Bytes

Versions: 6

Compression:

Stored size: 989 Bytes

Contents

<%= content_for :data_controls do %>
	<%= link_to "New Post", new_spud_admin_post_path, :class => "button", :title => "New Post" %>
<% end %>

<%=content_for :detail do %>
	<table class="admin-table">
		<thead>
			<tr>
				<th>Title</th>
				<th>Author</th>
				<th>Published At</th>
				<th>Comments</th>
				<th>&nbsp;</th>
			</tr>			
		</thead>
		<tbody>
			<% @posts.each do |post| %>
				<tr>
					<td><%= link_to post.title, edit_spud_admin_post_path(post) %></td>
					<td><%= post.author.full_name %></td>
					<td><%= link_to(post.published_at.strftime('%m/%d/%Y'), blog_post_path(post.url_name)) %></td>
					<td><%= post.comments.size %></td>
					<td align="right">
						<%= link_to 'Delete', spud_admin_post_path(post), :method => :delete, :confirm => 'Are you sure you want to delete this post?', :class => 'spud_admin_button_delete' %>
					</td>
				</tr>
			<%end%>
		</tbody>
	</table>
	<div class="spud_admin_pagination">
		<%= will_paginate @posts %>
	</div>
<%end%>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
spud_blog-0.7.5 app/views/spud/admin/posts/index.html.erb
spud_blog-0.7.4 app/views/spud/admin/posts/index.html.erb
spud_blog-0.7.2 app/views/spud/admin/posts/index.html.erb
spud_blog-0.7.0 app/views/spud/admin/posts/index.html.erb
spud_blog-0.6.3 app/views/spud/admin/posts/index.html.erb
spud_blog-0.6.0 app/views/spud/admin/posts/index.html.erb