{% extends "base.html" %} {% block navbar_start %} {% from 'macros/navbar.html' import navbar %} {{ navbar(view_model.navbar_items) }} {% endblock %} {% block content %}

{{ gettext("Payout factor (FIC) details") }}

{{ "info-circle"|icon }}

{{ gettext("The payout factor, also called the Factor of Individual Consumption (FIC), is a key figure in labour-time accounting.") }}

{{ gettext("It expresses what proportion of total work time is paid out as work certificates. It is calculated by relating the costs of productive versus public plans and can take values between 0 and 1." ) }} {{ gettext("The larger it is, the more product exists in the productive sector. The smaller it is, the more is freely available in the public sector.") }}

{{ gettext("Only plans that fall within the calculation window are considered. Plans that expired a long time ago play no role. Plans that partially overlap the window are included proportionally.") }} {{ gettext("For each plan, a coverage is calculated, which indicates how much of the plan falls within the calculation window.") }}

{{ gettext("Current payout factor:") }} {{ view_model.payout_factor }}

{{ gettext("Window size in days:") }} {{ view_model.window_size_in_days }}
{{ gettext("Window start:") }} {{ view_model.window_start }}
{{ gettext("Window end:") }} {{ view_model.window_end }}
plot of payout factor calculation window and plans
{% if view_model.plans is defined and view_model.plans|length %} {% for plan in view_model.plans %} {% endfor %} {% else %}
{{ gettext("No plans.") }}
{% endif %}
# {{ gettext("Plan") }} {{ gettext("Type") }} {{ gettext("Coverage") }}
{{ plan.row_index }} {{ plan.shortened_plan_name }} {{ gettext("Public") if plan.is_public else gettext("Productive") }} {{ plan.coverage }}
{% endblock %}