Skip to content

Commit ba9921f

Browse files
committed
Add scheduled/interval to script execution details
1 parent 399479c commit ba9921f

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

netbox_script_manager/templates/netbox_script_manager/scriptexecution.html

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,16 @@ <h5 class="card-header">Information</h5>
5454
<th scope="row">Task Queue</th>
5555
<td>{{ object.task_queue }}</td>
5656
</tr>
57+
{% if object.scheduled%}
58+
<tr>
59+
<th scope="row">Scheduled</th>
60+
<td>{{ object.scheduled }}</td>
61+
</tr>
62+
<tr>
63+
<th scope="row">Interval</th>
64+
<td>{{ object.interval }}</td>
65+
</tr>
66+
{% endif %}
5767
</table>
5868
</div>
5969
</div>

0 commit comments

Comments
 (0)