Skip to content

Commit

Permalink
fix bug on jobs status, ex: There are 11 jobs and 13 left to fill
Browse files Browse the repository at this point in the history
  • Loading branch information
chadn authored and mike-matera committed May 19, 2024
1 parent 343ccf8 commit d4c60e6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion signup/views/jobs.py
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ def jobs(request, title):
total_staff += job.needs
needed_staff += needed

status = get_status(role, total_staff, needed_staff)
status = get_status(role, needed_staff, total_staff)

template_values = {
'navdata': navdata,
Expand Down

0 comments on commit d4c60e6

Please sign in to comment.