{% extends 'editor/base.html' %} {% load humanize %} {% load i18n %} {% load static %} {% load tag_library %} {% load ifsetting %} {% block editor_scripts %} {% comment %} When select_locations and area_projects are set a dropdown list for project location filtering is shown {% endcomment %} {% if select_locations and area_projects %} {% comment %} JSON script is a type Dict[int, List[int]] where key is area id and value is list of project PK's {% endcomment %} {{area_projects|json_script:"areaprojects-data" }} {% comment %} This affects display of location dropdown. Therefore keeping inside the if statement. When we're satisfied with style redesign this may be moved to project specific or openly css Note that the 'level' corresponds to level property of simplelocations Area {% endcomment %} {% endif %} {% endblock %} {% block title %} {% blocktrans %}{{activity_singular}} Manager{% endblocktrans %} | {{ site_name }} {% endblock %} {% block editor_style %} {% endblock %} {% block subnavbar_buttons %} {% endblock subnavbar_buttons %} {% block content %} {% comment %} Modals work better when placed at the top of HTML {% endcomment %}
{% if organisation|import_allowed %} {% endif %}

{% blocktrans %}{{activity_singular}} Manager{% endblocktrans %} {% if title_extra %} - {{ title_extra }} {% endif %}


{{ organisation.name }}


  • {% trans 'Your Stats' %}

  • {% if iati_sync_enabled %}
  • {% trans 'IATI Import Available' %}
  • {% endif %}
  • {{ total_published }}{% blocktrans %}Published {{activity_plural}}{% endblocktrans %}
  • {{ total_drafts }}{% blocktrans %}Draft {{activity_plural}}{% endblocktrans %}
  • {{ total_transactions }}{% trans 'Financial Transactions' %}
  • {{ budgets_count }}{% blocktrans %}{{activity_singular}} Budgets{% endblocktrans %}
  • {{ implementing_ending_soon }}{% blocktrans %}{{activity_plural}} Ending{% endblocktrans %} Q{{ next_quarter_int }}
  • {{ total_iati_linked }}{% blocktrans %}IATI Linked {{activity_plural}}{% endblocktrans %}
  • {% trans 'Data Entry Completion' %}

  • {{ incomplete_activities }}{% blocktrans %}Incomplete {{activity_plural_lower}}{% endblocktrans %}
  • {{ avg_completion | percentify }}{% trans 'Average completion' %}

{{activity_plural}}

{% if select_locations %} {% endif %} {% block add_activity_button %}
{% with org=organisation.code|default:None %} {% blocktrans %}Add {{activity_singular}}{% endblocktrans %} {% endwith %}
{% endblock %}
{% for activity in object_list %} {% if activity.openly_status != iati_xml_status %} {% include 'editor/activity_card.html' %} {% endif %} {% endfor %}
{# riot tags #} {% block riot_tags %} {% endblock %} {% endblock content %}