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

Street Loop

Quick path: work a shift, run a crime, bank the cash, upgrade gear, then go hunting for a mug.

Cash Exposure

${{ current_user.wallet_money }} wallet

Only wallet cash can be mugged. Bank money is safe until you withdraw it.

Current Condition

Status: {{ current_user.status }}

XP: {{ current_user.xp }}

{% if current_user.job_id %}

You have an active job. Use the job page to work the next shift.

{% else %}

You do not have a job yet. Join one for reliable starter income.

{% endif %}

Recent Combat

{% if combat_logs %} {% else %}

No combat yet.

{% endif %}

Crime Feed

{% if crime_logs %} {% else %}

No crime results yet.

{% endif %}

Bank Feed

{% if bank_logs %} {% else %}

No bank activity yet.

{% endif %}

Work Feed

{% if job_logs %} {% else %}

No job shifts yet.

{% endif %}
{% endblock %}