Sha256: 0446a482affe39fafd9d5e278e873404431ac0368d5735be9e79d1064bf88547

Contents?: true

Size: 1.12 KB

Versions: 3

Compression:

Stored size: 1.12 KB

Contents

.leads-show.padded

  .header
    %h2.title
      Lead ##{@lead.id}
      = link_to '[~]', edit_lead_path(@lead)

  %ul
    %li Name: #{@lead.name}
    %li Email: #{@lead.email}
    %li Company: #{ link_to @lead.company.company_url, leadset_path(@lead.company) }
    %li Phone: #{@lead.phone}
    %li Address: #{@lead.address}

  .row
    .col-md-6.ctxs
      %h5
        Email Contexts (#{@ctxs.length})
        = link_to '[+]', '#'
      %ul
        - @ctxs.each do |ctx|
          %li
            = link_to ctx.subject, email_context_path(ctx)
            = pp_date ctx.sent_at
    .col-md-6.schs
      %h5
        Scheduled actions (#{@schs.length})
        = link_to '[+]', '#'
      %ul
        - @schs.each do |sch|
          %li
            = link_to sch.email_action.slug, edit_scheduled_email_action_path(sch)
            = sch.state
            (#{link_to 'proto-action', edit_email_action_path(sch.email_action)})
            = sch.perform_at


  .row
    .col-md-12.msgs
      %h5 Email Messages (#{@msgs.length})
      %ul
        - @msgs.each do |msg|
          %li= link_to msg.subject, email_conversation_path( msg.conv )




Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ish_manager-0.1.8.432 app/views/ish_manager/leads/show.haml
ish_manager-0.1.8.431 app/views/ish_manager/leads/show.haml
ish_manager-0.1.8.430 app/views/ish_manager/leads/show.haml