diff --git a/stats/static/stats/global_assignments.js b/stats/static/stats/global_assignments.js index 30fb86a2..b4ca227f 100644 --- a/stats/static/stats/global_assignments.js +++ b/stats/static/stats/global_assignments.js @@ -71,7 +71,7 @@ $(function () { createGaugeChart(data[i].ns_country_code + '_unassigned',data[i].unassigned,'Unassigned reports','unassigned'); createGaugeChart(data[i].ns_country_code + '_progress',data[i].progress,'Reports in progress','progress'); createGaugeChart(data[i].ns_country_code + '_pending',data[i].pending,'Pending reports','pending'); - createGaugeChart(data[i].ns_country_code + '_nsblocked',data[i].blocked_ns,'NS queue','ns queue'); + createGaugeChart(data[i].ns_country_code + '_reserved',data[i].reserved,'Reserved for supervisor only','reserved'); } diff --git a/stats/templates/stats/global_assignments.html b/stats/templates/stats/global_assignments.html index 37a5edd2..d97e2264 100644 --- a/stats/templates/stats/global_assignments.html +++ b/stats/templates/stats/global_assignments.html @@ -53,34 +53,35 @@
+ {% with is_superexpert=user.userstat.is_superexpert %}Reserved reports
+Reports reserved for national supervisors to validate first based on country-specific exclusivity days.
Unassigned reports
-Unassigned reports are reports that have not been yet assigned to any expert. Reports which are hidden or missing pictures are not included in this count.
+Unassigned reports pertain to those not yet allocated to any expert, excluding those reserved for the supervisor. Additionally, reports with hidden or missing pictures are not counted in this category.
Reports in progress
Reports in progress are reports which have not yet been assigned to at least 3 experts. Therefore, they are considered work in progress. This count excludes unassigned reports.
Pending reports
This is the total pending (assigned but not yet validated) reports for the users of the current country. These users include the national supervisor of the current country.
-Reports in National Supervisor queue
-Reports that are currently in the exclusivity period for the National Supervisor (and therefore not available to regular users), and NS has not yet claimed them
- {% if user.userstat.is_superexpert %} + {% if is_superexpert %}Blocked reports
Number of reports which have been claimed by experts and not validated for more than {{ days }} days.
{% endif %}Total reports reserved for supervisors:
+Total unassigned reports:
Total in progress reports:
Total pending reports:
Total reports in National Supervisor queue:
-Total blocked reports:
National supervisor - {{ d.ns_username }}
-Data last update - {{ d.last_update }} (UTC)