Sha256: 78bd820733f364a0726ea39898651ddd71e62c76c71b1d2754fbdc0e1bc5aef9

Contents?: true

Size: 785 Bytes

Versions: 2

Compression:

Stored size: 785 Bytes

Contents

= render "menu"

.wrapper.wrapper-content.animated.fadeInRight
  .col-lg-12
    .ibox.float-e-margins
      .ibox-title
        %h5 Subscribers of "#{@list.name}" list

      .ibox-content
        %table.table
          %thead
            %tr
              %th #
              %th State
              %th Email
              %th First Name
              %th Last Name
          %tbody
            - @subscribers.each do |sub|
              %tr
                %th{:scope => "row"}
                  = sub.id
                %th
                  %span.label{class: sub.style_class}
                    %i.fa.fa-check
                    = sub.state
                %td=sub.email
                %td=sub.name
                %td=sub.last_name

  .pagination
    = paginate @subscribers

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
chaskiq-0.0.3 app/views/chaskiq/manage/lists/show.haml
chaskiq-0.0.2 app/views/chaskiq/manage/lists/show.haml