Sha256: 77724a80b5a2c559b8169745f45199a74854d47297ae1c35c2afaddf0f58c8ef

Contents?: true

Size: 854 Bytes

Versions: 5

Compression:

Stored size: 854 Bytes

Contents

- content_for :sidebar do
  = render 'wco_email/sidebar'

.conversations-show.maxwidth
  %h5
    = @conversation.subject
    <b>(#{@conversation.messages.length})</b>
    %span.gray.mini= @conversation.id


  - if @other_convs.present?
    - @other_convs.each do |conv|
      .d-flex
        = button_to "Merge", merge_email_conversations_path( @conversation, conv ), data: { confirm: 'Are you sure?' }
        = conv.subject
        (#{conv.messages.length})
        %span.gray.mini= conv.id


  %ul.m-0.p-0
    - @conversation.messages.each do |msg|
      %li
        = render '/wco_email/messages/meta', message: msg
        %iframe.message-iframe{ src: message_iframe_path(msg) }

        = render '/wco_email/contexts/form_reply', lead_id: msg.lead_id, message: msg, ctx: WcoEmail::Context.new({ from_email: msg.to.downcase, subject: msg.subject })

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
wco_email-0.1.1.5 app/views/wco_email/conversations/show.haml
wco_email-0.1.1.4 app/views/wco_email/conversations/show.haml
wco_email-0.1.1.3 app/views/wco_email/conversations/show.haml
wco_email-0.1.1.2 app/views/wco_email/conversations/show.haml
wco_email-0.1.1.1 app/views/wco_email/conversations/show.haml