Sha256: fd124a318c8fd56e2a42c5d71fd8c1874e40a781e663ebc062bfe86008d9b758

Contents?: true

Size: 1.13 KB

Versions: 11

Compression:

Stored size: 1.13 KB

Contents

<!-- Main Content -->
<div class="wrapper wrapper-content">
	<div class="panel panel-primary">

		<div class="panel-heading">
			<i class="fa fa-pencil-square-o"></i> Article List
		</div>

		<div class="panel-body">

			<table class="table table-bordered table-striped table-hover">

				<thead>
					<tr>
						<th>Title</th>
						<th>Text Preview</th>
						<th>Article Status</th>
						<th></th>
					</tr>
				</thead>

				<tbody>
					<% @articles_posts.each do |articles_post| %>
						<tr>
							<td><%= articles_post.psttitle %></td>
							<td><%= truncate(articles_post.psttext, :length => 80) %></td>
							<td><%= articles_post.pststatus %></td>
							<td><div class="btn-group" role="group" aria-label="Blog Articles">
								<%= link_to 'Edit', edit_articles_post_path(articles_post), class: "btn btn-primary btn-xs" %>
								<%= link_to 'Delete', articles_post, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %>
							</div></td>
						</tr>
					<% end %>
				</tbody>

			</table>

			<%= link_to 'New Blog Post', new_articles_post_path, class: "btn btn-primary" %>

		</div>

	</div>
</div>

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
phcpress-5.3.9 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.8 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.7 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.6 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.5 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.4 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.3 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.2 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.3.0 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.2.1 app/views/phcpress/articles/posts/index.html.erb
phcpress-5.2.0 app/views/phcpress/articles/posts/index.html.erb