{% extends "base.html" %} {% block content %}

Current Job

{% if current_job %}

{{ current_job.name }}

{{ current_job.description }}

Pay: ${{ current_job.base_pay }} • Cooldown: {{ format_duration(current_job.cooldown_seconds) }}

{% if current_user.job_seconds_left %}

Work ready in {{ format_duration(current_user.job_seconds_left) }}

{% endif %}
{% else %}

No active job yet. Join one below for steady income.

{% endif %}

Why Jobs Matter

Jobs are the low-risk side of the economy. Crimes are spikier, mugging is predatory, and the bank keeps the loop honest.

{% for job in jobs %}

{{ job.name }}

{{ job.description }}

Requires level {{ job.required_level }} • Pays ${{ job.base_pay }} per shift

{% endfor %}

Recent Shifts

{% if job_logs %} {% else %}

No shift history yet.

{% endif %}
{% endblock %}