Closed goulinkh closed 6 months ago
goulinkh is not a collaborator of the repo
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 66.14%. Comparing base (
b9323f4
) to head (fedf46c
). Report is 1 commits behind head on main.
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.
Done
QA
./run serve
View the site locally in your web browser at: http://0.0.0.0:8002/careers/application/[token]
application_index
inwebapp/application.py
:@application.route("/")
def application_index(token):
withdrawn = False
application = { "status": "active", "candidate": { "first_name": "John", "last_name": "Doe" }, "stage_progress": { "application": True, "assessment": True, "early_stage": True, "late_stage": False, "offer": False }, "scheduled_interviews": [], "to_be_rejected": False, "role_name": "Software Engineer", "source": {"id": "2"},
"hiring_lead": {"name": "Jane Doe"}}
return flask.render_template(
"careers/application/index.html",
withdrawal_reasons= { key: value for key, value in withdrawal_reasons.items() if key != "33" },
token= "token",
application=application,
candidate=application["candidate"],
withdrawn=withdrawn,
)
Issue / Card
Fixes #1219
Screenshots
Current
After changes