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

    {{ _('Approval and Delete') }}

    {% if h.is_base_public_folder_bs3() %}
    {% set approval_action=h.url_for( "feedback.approve_target" ) %} {% set delete_action=h.url_for( "feedback.delete_target" ) %}
    {% if page.collection %}
    {% for feedback in page.collection %} {% endfor %} {% block page_pagination_bs3 %} {{ page.pager() }} {% endblock %} {% else %}

    {{ _('There are no applications.') }}

    {% endif %}
    {% else %}
    {% set approval_action=h.url_for( "feedback.approve_target" ) %} {% set delete_action=h.url_for( "feedback.delete_target" ) %}
    {% if page.collection %}
    {{ _('Dataset') }}
    {{ _('Resource') }}
    {{ _('Type') }}
    {{ _('Post Content') }}
    {{ _('Status') }}
    {% for feedback in page.collection %}
    {% if feedback.feedback_type == 'リソースコメント' %} {% elif feedback.feedback_type == '利活用申請' %} {% elif feedback.feedback_type == '利活用コメント' %} {% endif %}
    {{ feedback.package_title }} {{ feedback.resource_name }} {% if feedback.feedback_type == 'リソースコメント' %}
    {{ _('Resource Comment') }}
    {{ feedback.content }} {% elif feedback.feedback_type == '利活用申請' %}
    {{ _('Utilization') }}
    {{ feedback.content }} {% elif feedback.feedback_type == '利活用コメント' %}
    {{ _('Utilization Comment') }}
    {{ feedback.content }} {% endif %}
    {% if feedback.is_approved %} {{ _('Approved') }} {% else %} {{ _('Waiting') }} {% endif %}
    {% endfor %} {% block page_pagination %} {{ page.pager() }} {% endblock %} {% else %}

    {{ _('There are no applications.') }}

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

    {{ _('What are Approval and Delete') }}

    {% trans %} This is the management screen for approving or deleting resource comments, utilization method registration requests, and utilization method comments related to the organization's resources. {% endtrans %}

    {% for _filter in filters %}

    {{ _(_filter.type) }}

    {% endfor %}
    close {% endblock %} {%- block scripts %} {{ super() }} {% asset 'feedback/feedback-approval-and-delete' %} {% endblock %}