{% extends "page.html" %} {% block styles %} {{ super() }} {% asset 'feedback/feedback-admin-css' %} {% endblock %} {% block breadcrumb_content %} {{ super() }}
  • {{ _('Feedback Admin') }} / {{ _('Aggregation') }}
  • {% endblock %} {% block title %}{{ _('Aggregation') }} - CKAN{% endblock %} {% block primary_content %}
    {% if org_list %}

    {{ _('Aggregation') }}

    {{ _('Organization') }} :

    {{ h.csrf_input() }}
    {{ _('Feedback Monthly Report') }}

    {{ _('Month') }} :

    {% set monthly_action=h.url_for( 'feedback.download_monthly' ) %}

    {{ _('The data is aggregated for the specified month and can be exported.') }}

    {{ _('Feedback Yearly Report') }}

    {{ _('Year') }} :

    {% set yearly_action=h.url_for( 'feedback.download_yearly' ) %}

    {{ _('The data is aggregated for the specified year from January 1 to December 31 and can be exported.') }}

    {{ _('Feedback All-Time Report') }} {% set all_time_action=h.url_for( 'feedback.download_all_time' ) %}

    {{ _('The data is aggregated for all available periods and can be exported.') }}

    {% else %}

    {{ _('Aggregation') }}

    {{ _('The organization does not exist.') }}

    {% endif %}
    {% endblock %} {% block secondary_content %}

    {{ _('What are Aggregation') }}

    {% trans %} A screen where users can download aggregated feedback data on organizational resources in CSV format. {% endtrans %}

    {% trans %} The exported CSV file is in UTF-8 with BOM format, intended to be opened in Microsoft Excel. If you are using an application other than Excel, please convert the format as needed. {% endtrans %}

    {% endblock %} {%- block scripts %} {{ super() }} {% asset 'feedback/feedback-aggregation' %} {% endblock %}