Sha256: 2d91c548c3c9bc42c706e88182d9d80e73f5dc6e52453fb60c58a8c3f552d34c
Contents?: true
Size: 1.81 KB
Versions: 2
Compression:
Stored size: 1.81 KB
Contents
<p> <b>Id:</b> <%= h(@plan.id) %> </p> <p> <b>Label:</b> <%= h(@plan.label) %> </p> <p> <b>Status:</b> <%= h(@plan.state) %> <% if @plan.state == :paused %> <a href="<%= url("/#{@plan.id}/resume") %>" class="postlink">Resume</a> <% end %> <% if @plan.cancellable? %> <a href="<%= url("/#{@plan.id}/cancel") %>" class="postlink">Cancel</a> <% end %> </p> <p> <b>Result:</b> <%= h(@plan.result) %> </p> <% if @plan.state == :scheduled && @plan.delay_record %> <p> <b>Start at:</b> <%= h(@plan.delay_record.start_at) %> </p> <p> <b>Start before:</b> <%= h(@plan.delay_record.start_before || "-") %> </p> <% end %> <p> <b>Started at:</b> <%= h(@plan.started_at) %> </p> <p> <b>Ended at:</b> <%= h(@plan.ended_at) %> </p> <ul class="phases nav nav-tabs" id="myTab"> <li><a href="#plan">Plan</a></li> <li class="active"><a href="#run">Run</a></li> <li><a href="#finalize">Finalize</a></li> <li><a href="#execution-history">Execution History</a></li> </ul> <div class="tab-content"> <div class="tab-pane" id="plan"> <%= erb :plan_step, locals: { step: @plan.root_plan_step } %> </div> <div class="tab-pane active" id="run"> <table class="flow-hint"> <tr> <td class="border sequence"> </td> <td>sequence</td> <td class="border concurrence"> </td> <td>concurrence</td> </tr> </table> <%= erb :flow, locals: { flow: @plan.run_flow } %> </div> <div class="tab-pane" id="finalize"> <%= erb :flow, locals: { flow: @plan.finalize_flow } %> </div> <div class="tab-pane" id="execution-history"> <%= erb :execution_history %> </div> </div> <script> $(function () { $('.phases a').click(function (e) { e.preventDefault(); $(this).tab('show'); }); }) </script> <a href="<%= url '/' %>">Back</a>
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
dynflow-0.8.23 | web/views/show.erb |
dynflow-0.8.22 | web/views/show.erb |