Sha256: c0b6a0d786c0db45ac0d99bfda053074d092763f5cdcc1e62407354e0dac284f

Contents?: true

Size: 510 Bytes

Versions: 4

Compression:

Stored size: 510 Bytes

Contents

%h1= link_to "Process #{@process.name}", yawl_process_path(@process.name)

%h2= "Step #{@step.seq}: #{@step.name}"

- if @step.attempts.count == 0
  %p No attempts yet.
- else
  - @step.attempts.reverse.each do |attempt|
    %h3= "Attempt at #{attempt.started_at}"
    - if attempt.completed_at
      %p= "Completed at #{attempt.completed_at}"
      %pre.pre-scrollable.step-output
        = preserve do
          - attempt.output.lines.each do |line|
            = line
    - else
      %p Not completed yet.

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
yawl_rails-0.3.0 app/views/yawl_rails/steps/show.html.haml
yawl_rails-0.2.2 app/views/yawl_rails/steps/show.html.haml
yawl_rails-0.2.1 app/views/yawl_rails/steps/show.html.haml
yawl_rails-0.2.0 app/views/yawl_rails/steps/show.html.haml