{% extends "global/Page.html" %} {% load otree %} {% block title %} Regulator's Audit Report: Round {{ player.round_number }} {% endblock %} {% block content %}
{# 1. Show if they were audited (40% chance) #} {% if player.aselected >= 60 %}

⚠️ Audit Selected

The regulator has selected your firm's file for an audit this year.

{# 2. Show if they failed the material audit (based on their spend choice) #} {% if player.penalty > 0 %}
Material Audit Failure Detected

The audit revealed a material failure. A penalty of {{ C.PENALTY }} has been levied.

{% else %}
No Material Failure

The audit did not find any material failures in your work.

{% endif %} {# 3. Show the random Immaterial Penalty (50% chance) #} {% if player.impenalty > 0 %}
Immaterial Error: An additional penalty of {{ C.RPENALTY }} was charged for minor documentation errors.
{% endif %} {% else %} {# No Audit Case #}

✅ No Audit

Your firm was not selected for an audit by the regulator this year.

{% endif %}
Current Financial Standing

Your balance after this round's results: {{ player.balance }}

{% next_button %} {% endblock %}