Sha256: acb18d1d1f93aa4b121978b47f1ad030e84e02334d19c92a70915b6cd12c9a1e

Contents?: true

Size: 1.36 KB

Versions: 9

Compression:

Stored size: 1.36 KB

Contents

.jumbotron
  %p= @auton_id
  %p
    %span#auton_state.label.label-default= @auton_state.state
.panel.panel-default
  .panel-heading Actions
  .panel-body
    %a.btn.btn-default#schedule_step{href: url('/auton/%s/schedule_step') % @auton_id} Schedule Step

.panel.panel-default
  .panel-heading State
  .panel-body
    %code#current_state{'data-toggle' => "tooltip", 'data-placement' => "left", title:"Tooltip on left"}
      = JSON.pretty_generate(@auton_state.serialized)

.panel.panel-default
  #queue.panel-heading Queue
  .panel-body.container-fluid
    .row
      .col-md-12
        .panel.panel-default
          #executing.panel-heading Executing
          .panel-body
            - if @auton_state.queue.currently_executing
              = "%s(%s)" % [@auton_state.queue.currently_executing.name, @auton_state.queue.currently_executing.parameters.join(', ')]

    .row
      .col-md-6
        #to_execute.panel.panel-default
          .panel-heading To Execute
          .panel-body
            %ul.list-group
              - @auton_state.queue.to_execute.each do |to_execute|
                %li.list-group-item= to_execute.name

      .col-md-6
        #executed.panel.panel-default
          .panel-heading Executed
          .panel-body
            %ul.list-group
              - @auton_state.queue.executed.each do |executed|
                %li.list-group-item= executed.name

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
nestene-0.1.8 lib/nestene/ui/views/auton.haml
nestene-0.1.7 lib/nestene/ui/views/auton.haml
nestene-0.1.6 lib/nestene/ui/views/auton.haml
nestene-0.1.5 lib/nestene/ui/views/auton.haml
nestene-0.1.4 lib/nestene/ui/views/auton.haml
nestene-0.1.3 lib/nestene/ui/views/auton.haml
nestene-0.1.2 lib/nestene/ui/views/auton.haml
nestene-0.1.1 lib/nestene/ui/views/auton.haml
nestene-0.1.0 lib/nestene/ui/views/auton.haml