anthonymidili/Bullhorn

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

Summary

Maintainability
Test Coverage
= turbo_frame_tag @post do
  .modal
    .modal_content
      .row.center-content
        .col-12
          = link_to root_path(anchor: "post_#{@post.id}"), 
          class: "close-btn", title: 'Cancel' do
            %i.fa-solid.fa-xmark
          - if @post.reposting
            %h1 Edit Repost
          - else
            %h1 Edit Post

          = render 'form', post: @post
          - if @post.reposting
            %h3 Reposting Post
            = render @post.reposting, quoted_post_form: true