Sha256: e450b1f0b010241cfcb8c788486249f4f6830387f502e921abcd21df28bce816

Contents?: true

Size: 1.62 KB

Versions: 5

Compression:

Stored size: 1.62 KB

Contents

<%= content_for :data_controls do %>
	<%= link_to "Manage Categories", spud_admin_post_categories_path, :class => 'btn spud_blog_manage_categories', :title => 'Manage Categories' %>
	<%= link_to "Manage Comments", spud_admin_post_comments_path, :class => 'btn', :title => 'Manage Comments' %>
	<%= link_to "New Post", new_spud_admin_post_path, :class => "btn btn-primary", :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 edit_spud_admin_post_path(post) do %>
							<%=post.title%>
							<%if !post.visible%>
								<span class="badge">Draft</span>
							<%end%>
						<%end%>
					</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>
						Approved: <%=link_to post.visible_comments.count, spud_admin_post_post_comments_path(:post_id => post.id) %>
						<br/>
						Spam: <%=link_to post.spam_comments.count, spud_admin_post_post_comments_path(:post_id => post.id) %>
					</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 => 'btn btn-danger' %>
					</td>
				</tr>
			<%end%>
		</tbody>
	</table>
	<div class="spud_admin_pagination">
		<%= will_paginate @posts %>
	</div>

	<script>
		$(document).ready(spud.admin.post_categories.index);
	</script>
<%end%>

Version data entries

5 entries across 5 versions & 2 rubygems

Version Path
spud_blog-0.9.11 app/views/spud/admin/posts/index.html.erb
tb_blog-1.0.2 app/views/spud/admin/posts/index.html.erb
tb_blog-1.0.1 app/views/spud/admin/posts/index.html.erb
tb_blog-1.0 app/views/spud/admin/posts/index.html.erb
spud_blog-0.9.10 app/views/spud/admin/posts/index.html.erb