Sha256: 0b30d0b5a7b4f9a86d405824aa1d55daa67b2630d848bd668bec7c87b97a334c

Contents?: true

Size: 922 Bytes

Versions: 21

Compression:

Stored size: 922 Bytes

Contents

.row
  .large-12.columns
    %h3
      Reports Index (#{@reports.length})
      - if @site
        In #{@site.domain}/#{@site.lang}
      = link_to image_new, new_report_path
      
    = paginate @reports, :param_name => :reports_page, :views_prefix => 'ish_manager'
    
    - @reports.each do |report|
      .card
        .card-content
          = link_to '[~]', edit_report_path( report )
          = link_to '[x]', report_path( report ), :method => :delete, :data => { :confirm => 'Are you sure?' }
          - if report.is_public
            %i.material-icons visibility
          - else
            %i.material-icons visibility off
          = link_to report.name, report_path( report )
          %br
          .gray
            - if report.site
              Site #{report.site.domain}/#{report.site.lang}
            %br
            = report.created_at
    = paginate @reports, :param_name => :reports_page
    

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
ish_manager-0.1.8.103 app/views/ish_manager/reports/index.haml