SeriouslyAwesome/democratictravelers

View on GitHub
app/views/posts/edit.html.erb

Summary

Maintainability
Test Coverage
<div class="row">
  <h2 class="structural">
    Editing
    <small>
      <i><%= @post.title %></i>, written on <%= @post.created_at.strftime('%D') %>
      <%= link_to post_path(@post), method: :delete, class: 'post-delete', data: { confirm: "Are you sure you want to delete this post? Really?" }  do %>
        <%= icon 'trash-o' %> Delete
      <% end %>
    </small></h2>

  <%= render 'form', post: @post %>
</div>