mirror of
https://gitlab.com/allianceauth/allianceauth.git
synced 2025-07-18 08:50:17 +02:00
13 lines
430 B
HTML
13 lines
430 B
HTML
{% load humanize %}
|
|
{% load admin_status %}
|
|
|
|
<div
|
|
class="progress-bar progress-bar-{{ level }} task-status-progress-bar"
|
|
role="progressbar"
|
|
aria-valuenow="{% decimal_widthratio tasks_count tasks_total 100 %}"
|
|
aria-valuemin="0"
|
|
aria-valuemax="100"
|
|
style="width: {% decimal_widthratio tasks_count tasks_total 100 %}%;">
|
|
<p style="margin-top:5px;">{% widthratio tasks_count tasks_total 100 %}%</p>
|
|
</div>
|