Sha256: 8c53b4fc855a2aba0c729998f92016aef214d579c688520bfc69f4b828de8f33
Contents?: true
Size: 1.26 KB
Versions: 3
Compression:
Stored size: 1.26 KB
Contents
<% content_for :title do %> <h1 class="project-banner space-below"> <%= link_to "Jobs", jobs_path %> <small><%= @job_name %></small> </h1> <% end %> <div class="nomargin"> <table id="jobs" class="table table-sortable table-striped"> <thead> <tr> <td class="table-margin"></td> <th class="scheduler-job-time">Time</th> <th class="scheduler-job-succeded">Succeeded</th> <th class="scheduler-job-duration">Duration</th> <th class="scheduler-job-exception">Exception</th> <td class="table-margin"></td> </tr> </thead> <tbody> <% @jobs.each do |job| %> <tr class="scheduler-job"> <td class="table-margin"></td> <td class="scheduler-job-time"><%= format_time job.started_at %></td> <td class="scheduler-job-succeded"><%= format_job_state job %></td> <td class="scheduler-job-duration"><%= format_duration job.duration %></td> <td class="scheduler-job-exception"><%= job.error.message if job.error %><td> <td class="table-margin"></td> </tr> <% end %> </tbody> </table> </div> <% content_for :javascripts do %> <script type="text/javascript"> $(function() { $('#jobs').tablesorter(); }); </script> <% end %>
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
houston-core-0.7.0.beta3 | app/views/jobs/show.html.erb |
houston-core-0.7.0.beta2 | app/views/jobs/show.html.erb |
houston-core-0.7.0.beta | app/views/jobs/show.html.erb |