Sha256: 03617cacfbb742943e85bf5ba5ccd43c3e0524a1d29b0b896a1c759c694d4efe

Contents?: true

Size: 425 Bytes

Versions: 2

Compression:

Stored size: 425 Bytes

Contents

%h2 Recent Processes

- if @processes.count == 0
  %p No processes yet.
- else
  %table#processes.table
    %thead
      %tr
        %th #
        %th Desired State
        %th State
        %th Started at
    %tbody
      - @processes.each do |p|
        %tr{:id => "process-#{p.name}"}
          %td= link_to p.name, yawl_process_path(p.id)
          %td= p.desired_state
          %td= p.state
          %td= p.created_at

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
yawl_rails-0.1.1 app/views/yawl_rails/processes/index.html.haml
yawl_rails-0.1.0 app/views/yawl_rails/processes/index.html.haml