Sha256: 6464a91c0b0d139f3db8bf9caa2de10d4e7b7176dfbd08c963bfc2ce2ce49f4b

Contents?: true

Size: 1.19 KB

Versions: 6

Compression:

Stored size: 1.19 KB

Contents

<% recurring_logic = task_group.recurring_logic -%>
<table class='table table-condensed'>
  <tr>
    <th>ID</th>
    <td><%= link_to(recurring_logic.id, recurring_logic) %></td>
  </tr>
  <tr>
    <th><%= N_("Cronline") %></th>
    <td><%= recurring_logic.cron_line %></td>
  </tr>
  <tr>
    <th><%= N_("Action") %></th>
    <td><%= format_task_input(recurring_logic.tasks.first, true) %></td>
  </tr>
  <tr>
    <th><%= N_("Last occurrence") %></th>
    <td><%= recurring_logic.tasks.order(:started_at).where('started_at IS NOT NULL').last.try(:started_at) || N_('-') %></td>
  </tr>
  <tr>
    <th><%= N_("Next occurrence") %></th>
    <td><%= recurring_logic_next_occurrence recurring_logic %></td>
  </tr>
  <tr>
    <th><%= N_("Current iteration") %></th>
    <td><%= recurring_logic.iteration %></td>
  </tr>
  <tr>
    <th><%= N_("Iteration limit") %></th>
    <td><%= format_recurring_logic_limit recurring_logic.max_iteration %></td>
  </tr>
  <tr>
    <th><%= N_("Repeat until") %></th>
    <td><%= format_recurring_logic_limit recurring_logic.end_time.try(:in_time_zone) %></td>
  </tr>
  <tr>
    <th><%= N_("State") %></th>
    <td><%= recurring_logic_state(recurring_logic) %></td>
  </tr>
</table>

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
foreman-tasks-0.7.12 app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb
foreman-tasks-0.7.11 app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb
foreman-tasks-0.7.10 app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb
foreman-tasks-0.7.9 app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb
foreman-tasks-0.7.8 app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb
foreman-tasks-0.7.7 app/views/foreman_tasks/task_groups/recurring_logic_task_groups/_recurring_logic_task_group.html.erb