django-rq
django-rq copied to clipboard
[FIX] -- job status display in scheduler listing page template.
Fix job status display in scheduler template
Description
This PR updates scheduler.html to correctly display the job status by using job.get_status.value instead of job.get_status.
Changes
- Updated job status display in
scheduler.html. - Affects the scheduler view at
/django-rq/schedulers/<scheduler_id>/.
Before Screenshot:
After Screenshot:
Testing
- Verified that the job status is displayed correctly in the scheduler view.
- Ensured no other UI elements were affected.
Hey @selwin,
Any updates on this? Does this fix require test cases? I don't think so, as it's just a template frontend-side value change.
No tests is necessary since you provided a screenshot, but can you make sure that all tests pass?
All tests on current master now pass. Try rebasing?
All tests on current master now pass. Try rebasing?
Sure will do it today :)
EDIT: Done ✅
@DhavalGojiya the tests still failed, did you look at the failing test to see what went wrong?
@DhavalGojiya the tests still failed, did you look at the failing test to see what went wrong?
I think the issue is on GitHub Actions' side. The Docker pull image rate limit API has been exceeded, which is why the action is unable to run.
@DhavalGojiya mind merging master into this branch so the tests can run again?
@DhavalGojiya mind merging master into this branch so the tests can run again?
Rebase Done. Master to this Current Branch.
Thanks!
