{# bs5ok #} {% load origin %} {% origin %}
Country | Percentage of authors | Authors |
---|---|---|
{{ country|default:"(unknown)" }} | {{ percentage|floatformat:2 }}% | {% include "stats/includes/number_with_details_cell.html" %} |
The statistics are based entirely on the author addresses provided with each draft. Since this varies across documents, a traveling author may be counted in more than country, making the total sum more than 100%.
In case no country information is found for an author in the time period, the author is counted as (unknown).
EU (European Union) is not a country, but has been added for reference, as the sum of all current EU member countries: {% for c in eu_countries %} {{ c.name }} {% if not forloop.last %},{% endif %} {% endfor %} .
In generating the above statistics, some heuristics have been applied to figure out which country each author is from.
{% if request.GET.showaliases %} {% if request.user.is_staff %}Note: since you're an admin, some extra links are visible. You can either correct a document author entry directly in case the information is obviously missing or add an alias if an unknown country name is being used.
{% endif %} {% if alias_data %}Country | Alias | {% for name, alias, country in alias_data %}
---|---|
{% if country and request.user.is_staff %} {{ name|default:"(unknown)" }} {% else %} {{ name|default:"(unknown)" }} {% endif %} | {{ alias }} {% if request.user.is_staff and name != "EU" %} Matching authors {% endif %} |