diff options
author | Raghuram Subramani <raghus2247@gmail.com> | 2025-05-12 11:31:03 +0530 |
---|---|---|
committer | Raghuram Subramani <raghus2247@gmail.com> | 2025-05-12 11:31:03 +0530 |
commit | 303dc6e44fb60979289ec51c8cce6f3756d7416b (patch) | |
tree | f302def199fa7ab6cb4d80089ce4122ac28f2e66 /web/app/main.py | |
parent | 250d8c18777c7e0ba87ec4334d3b316d4e6bd0dd (diff) |
update
Diffstat (limited to 'web/app/main.py')
-rw-r--r-- | web/app/main.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/app/main.py b/web/app/main.py index e834c0c..d48eb04 100644 --- a/web/app/main.py +++ b/web/app/main.py @@ -21,7 +21,7 @@ main = Blueprint('main', __name__) @login_required def home(): jobs = job_manager.get_jobs() - completed_jobs = TinyDB('jobs.json').all() + completed_jobs = TinyDB('app/jobs.json').all() return render_template('home.html', user=current_user, states=states, acts=act_list, completed_jobs=completed_jobs, jobs=jobs) @main.route('/logout') |