News Post List
<% @news_posts.each do |news_post| %> <% end %>
Post Name Post Text Post Status
<%= news_post.newspsttitle %> <%= truncate(news_post.newspsttext, :length => 80) %> <%= news_post.pststatus %>
<%= 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?' } %>
<%= link_to 'New Post', new_news_post_path, class: "btn btn-primary" %>