Working on my forum goal ext.
Is there a way to use TWIG in the template to round a number?
Currently I have to do this:The round is used to use the correct color of the bar, with this code:or do I just accept my current code? It does work.
Is there a way to use TWIG in the template to round a number?
Currently I have to do this:
Code:
'FORUM_POST_PERCENT'=> round(($total_posts * 100) / $this->config['forum_goals_posts']),'FORUM_POST_PERCENT_DEC'=> $this->format_number(($total_posts * 100) / $this->config['forum_goals_posts']),Code:
<span class="{% if FORUM_POST_PERCENT < 34 %}red{% elseif FORUM_POST_PERCENT < 75 %}orange{% elseif FORUM_POST_PERCENT < 100 %}blue{% elseif FORUM_POST_PERCENT >= 100 %}green{% endif %}" style="width: {% if FORUM_POST_PERCENT > 100 %}100{% else %}{{ FORUM_POST_PERCENT }}{% endif %}%;"><span>{{ FORUM_POST_PERCENT }}%</span></span>Statistics: Posted by Stoker 4.0 — Fri Jun 27, 2025 1:29 pm