Sha256: 345d72aea8b5e1cfda48b1931ccda21c10ebc51d232839ad29fcace33eb96b8e

Contents?: true

Size: 1.14 KB

Versions: 2

Compression:

Stored size: 1.14 KB

Contents

<!-- Main Content -->
<div class="wrapper wrapper-content">
	<div class="panel panel-default">
		<div class="panel-heading">
			<i class="fa fa-newspaper-o"></i> News Post List
		</div>
		<div class="panel-body">
			<table class="table table-bordered table-striped table-hover">

				<thead>
					<tr>
						<th>Post Name</th>
						<th>Post Text</th>
						<th>Post Status</th>
						<th></th>
					</tr>
				</thead>

				<tbody>
					<% @news_posts.each do |news_post| %>
						<tr>
							<td><%= news_post.newspsttitle %></td>
							<td><%= news_post.newspsttext %></td>
							<td><%= news_post.pststatus %></td>
							<td><div class="btn-group" role="group" aria-label="News Articles">
								<%= link_to 'Show', news_post, class: "btn btn-primary btn-xs" %>
								<%= link_to 'Edit', edit_news_post_path(news_post), class: "btn btn-primary btn-xs" %>
								<%= link_to 'Destroy', news_post, class: "btn btn-danger btn-xs", method: :delete, data: { confirm: 'Are you sure?' } %>
							</div></td>
						</tr>
					<% end %>
				</tbody>

			</table>
			<%= link_to 'New Post', new_news_post_path, class: "btn btn-primary" %>
		</div>
	</div>
</div>

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
phcpress-0.6.0 app/views/phcpress/news/posts/index.html.erb
phcpress-0.5.9b app/views/phcpress/news/posts/index.html.erb