File tree 3 files changed +6
-5
lines changed
templates/admin/scheduler
3 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
import click
4
4
from django .core .management .base import BaseCommand
5
+
5
6
from scheduler .views import get_statistics
6
7
7
8
ANSI_LIGHT_GREEN = "\033 [1;32m"
Original file line number Diff line number Diff line change @@ -137,28 +137,28 @@ <h2>Job {{ job.id }}
137
137
138
138
< div class ="submit-row ">
139
139
< div class ="deletelink-box ">
140
- < a href ="{% url 'queue_job_action' job.id 'delete' %} "
140
+ < a href ="{% url 'queue_job_action' job.id 'delete' %} "
141
141
class ="deletelink "> Delete</ a >
142
142
</ div >
143
143
{% if job.is_started %}
144
144
< div class ="deletelink-box ">
145
- < form method ='POST ' action ="{% url 'queue_job_action' job.id 'cancel' %} ">
145
+ < form method ='POST ' action ="{% url 'queue_job_action' job.id 'cancel' %} ">
146
146
{% csrf_token %}
147
147
< input type ="submit " value ="cancel " class ="default " name ="cancel ">
148
148
</ form >
149
149
</ div >
150
150
{% endif %}
151
151
{% if job.is_failed %}
152
152
< div class ="deletelink-box ">
153
- < form method ='POST ' action ="{% url 'queue_job_action' job.id 'requeue' %} ">
153
+ < form method ='POST ' action ="{% url 'queue_job_action' job.id 'requeue' %} ">
154
154
{% csrf_token %}
155
155
< input type ="submit " value ="Requeue " class ="default " name ="requeue ">
156
156
</ form >
157
157
</ div >
158
158
{% endif %}
159
159
{% if not job.is_queued and not job.is_failed %}
160
160
< div class ="deletelink-box ">
161
- < form method ='POST ' action ="{% url 'queue_job_action' job.id 'enqueue' %} ">
161
+ < form method ='POST ' action ="{% url 'queue_job_action' job.id 'enqueue' %} ">
162
162
{% csrf_token %}
163
163
< input type ="submit " value ="Enqueue " class ="default " name ="Enqueue ">
164
164
</ form >
Original file line number Diff line number Diff line change @@ -628,7 +628,7 @@ def test_check_rescheduled_after_execution(self):
628
628
self .assertNotEquals (task .job_id , first_run_id )
629
629
630
630
def test_check_rescheduled_after_execution_failed_job (self ):
631
- task = task_factory (self .TaskModelClass , callable_name = 'scheduler.tests.jobs.failing_job' ,
631
+ task = task_factory (self .TaskModelClass , callable_name = 'scheduler.tests.jobs.failing_job' ,
632
632
scheduled_time = timezone .now () + timedelta (seconds = 1 ))
633
633
queue = task .rqueue
634
634
first_run_id = task .job_id
You can’t perform that action at this time.
0 commit comments