|
21 | 21 | <th data-searchable="false" data-orderable="true">{{ "detail.lastExecution"|trans }}</th> |
22 | 22 | <th data-searchable="false" data-orderable="true">{{ "detail.nextRun"|trans }}</th> |
23 | 23 | <th data-searchable="false" data-orderable="true" class="text-right">{{ "detail.priority"|trans }}</th> |
24 | | - <th data-searchable="false" data-orderable="false" class="text-right">{{ "detail.actions"|trans }}</th> |
| 24 | + <th data-visible="false" data-searchable="false" data-orderable="true" class="text-right">{{ "detail.locked"|trans }}</th> |
| 25 | + <th data-visible="false" data-searchable="false" data-orderable="true" class="text-right">{{ "detail.notes"|trans }}</th> |
| 26 | + <th data-visible="false" data-searchable="false" data-orderable="true" class="text-right">{{ "detail.pingBackUrl"|trans }}</th> |
| 27 | + <th data-visible="false" data-searchable="false" data-orderable="true" class="text-right">{{ "detail.pingBackFailedUrl"|trans }}</th> |
| 28 | + <th data-searchable="false" data-orderable="false" class="text-right" style="min-width: 150px;">{{ "detail.actions"|trans }}</th> |
25 | 29 | </tr> |
26 | 30 | </thead> |
27 | 31 | <tbody> |
|
40 | 44 | </td> |
41 | 45 | <td data-search="{{ command.name }}" data-order="{{ command.name }}"> |
42 | 46 | <span style="font-size:14px;" {% if command.disabled == false %} |
43 | | - class="badge badge-success" title="Command is active" |
| 47 | + class="badge bg-success" title="Command is active" |
44 | 48 | {% else %} |
45 | | - class="badge badge-danger" title="Command is disabled" |
| 49 | + class="badge bg-danger" title="Command is disabled" |
46 | 50 | {% endif %}> |
47 | 51 | {{ command.name }} |
48 | 52 | </span> |
|
57 | 61 | {{ command.logFile }} |
58 | 62 | </td> |
59 | 63 | <td> |
60 | | - <span style="font-size:14px;" class="badge badge-{% if command.lastReturnCode == 0 %}success{% else %}danger{% endif %}" title="Last Return Code: {{ command.lastReturnCode }}"> |
| 64 | + <span style="font-size:14px;" class="badge bg-{% if command.lastReturnCode == 0 %}success{% else %}danger{% endif %}" title="Last Return Code: {{ command.lastReturnCode }}"> |
61 | 65 | {{ command.lastExecution is empty ? "" : command.lastExecution|date( "dateFormat"|trans ) }} |
62 | 66 | </span> |
63 | 67 | </td> |
|
70 | 74 | <td class="text-right"> |
71 | 75 | {{ command.priority }} |
72 | 76 | </td> |
73 | | - <td style="min-width: 90px;" class="action-container text-right"> |
| 77 | + <td class="text-right"> |
| 78 | + {{ command.locked }} |
| 79 | + </td> |
| 80 | + <td class="text-right"> |
| 81 | + {{ command.notes }} |
| 82 | + </td> |
| 83 | + <td class="text-right"> |
| 84 | + {{ command.pingBackUrl }} |
| 85 | + </td> |
| 86 | + <td class="text-right"> |
| 87 | + {{ command.pingBackFailedUrl }} |
| 88 | + </td> |
| 89 | + <td style="min-width: 150px;" class="action-container text-right"> |
74 | 90 | {% if command.locked == true %} |
75 | 91 | <a href="{{ path('dukecity_command_scheduler_action_unlock', {'id': command.id}) }}" |
76 | 92 | onclick="return confirm('{{ "action.unlock"|trans }}')" |
|
0 commit comments