Sha256: 2fc4bccace08a7a807b01109754b11bb4fbfb98b9cb24f58a4f8f695ef129052

Contents?: true

Size: 921 Bytes

Versions: 6

Compression:

Stored size: 921 Bytes

Contents

!!! 5
- nav = render_haml('_nav.haml', self)
- head = render_haml('_head.haml', self)
- foot = render_haml('_foot.haml', self)
%html
  %head
    %title Flapjack - #{@adjective.capitalize} Entities
    = head
  %body
    %div#wrap
      %div{:class => "container"}
        %div{:class => "page-header"}
          = nav
          %h2 #{@adjective.capitalize} Entities
        %p #{@count_failing_entities} failing out of #{@count_all_entities}
        %table{:class => "table table-bordered table-hover table-condensed"}
          - if @entities.length > 0
            - @entities.each do |entity|
              %tr
                %td
                  - link = "/entity/#{CGI.escape(entity)}"
                  %a{:href => link}
                    #{entity}
          - else
            %p No check output has been processed yet, so there's no entities we can show you here.
      %div#push
    %div#footer
      = foot

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
flapjack-0.7.7 lib/flapjack/gateways/web/views/entities.haml
flapjack-0.7.6 lib/flapjack/gateways/web/views/entities.haml
flapjack-0.7.5 lib/flapjack/gateways/web/views/entities.haml
flapjack-0.7.4 lib/flapjack/gateways/web/views/entities.haml
flapjack-0.7.3 lib/flapjack/gateways/web/views/entities.haml
flapjack-0.7.2 lib/flapjack/gateways/web/views/entities.haml