17 | | {{ "detail.name"|trans }} | 18 |{{ "detail.command"|trans }} | 19 |{{ "detail.cronExpression"|trans }} | 20 |{{ "detail.logFile"|trans }} | 21 |{{ "detail.lastExecution"|trans }} | 22 |{{ "detail.nextRun"|trans }} | 23 |{{ "detail.priority"|trans }} | 24 |{{ "detail.actions"|trans }} | 25 |
---|---|---|---|---|---|---|---|---|
31 | 33 | {% if command.disabled == true %} 34 | 35 | {% else %} 36 | 37 | {% endif %} 38 | 39 | | 40 |41 | 46 | {{ command.name }} 47 | 48 | | 49 |50 | {{ command.command }} {{ command.arguments }} 51 | | 52 |53 | {{ command.cronExpression }} 54 | | 55 |56 | {{ command.logFile }} 57 | | 58 |59 | 60 | {{ command.lastExecution is empty ? "" : command.lastExecution|date( "dateFormat"|trans ) }} 61 | 62 | | 63 |64 | {% set nextRunDate = command.getNextRunDate() %} 65 | {% if nextRunDate is not null %} 66 | {{ nextRunDate|date( "dateFormat"|trans ) }} 67 | {% endif %} 68 | | 69 |70 | {{ command.priority }} 71 | | 72 |
73 | {% if command.locked == true %}
74 |
78 |
79 |
80 | {% else %}
81 | |
100 |