{% extends "base.html" %} {% block title %}{{ _('predictions.title') }} - FINA{% endblock %} {% block content %}
{{ _('predictions.subtitle') }}
{{ _('predictions.no_data_desc') }}
| {{ _('common.category') }} | {{ _('predictions.amount') }} | {{ _('predictions.confidence') }} | {{ _('predictions.trend') }} | {{ _('common.actions') }} |
|---|---|---|---|---|
| {{ category_name }} | {{ prediction.predicted_amount|round(2) }} RON | {% if prediction.confidence == 'high' %} {{ _('predictions.confidence_high') }} {% elif prediction.confidence == 'medium' %} {{ _('predictions.confidence_medium') }} {% else %} {{ _('predictions.confidence_low') }} {% endif %} | {% if prediction.trend == 'increasing' %} {{ _('predictions.trend_increasing') }} {% elif prediction.trend == 'decreasing' %} {{ _('predictions.trend_decreasing') }} {% else %} {{ _('predictions.trend_stable') }} {% endif %} |
{{ _('predictions.methodology_desc') }}