{% if h.is_enabled_utilizations() %} {% extends "page.html" %} {% block styles %} {{ super() }} {% asset 'feedback/feedback-search-css' %} {% endblock %} {% block breadcrumb_content %} {{ super() }}
  • {{ _('Utilization') }}
  • {% endblock %} {% block primary %}
    {% block search_by_keyword %}
    {% if not disable_keyword %}

    {{ _('Keyword Search') }}

    {% endif %} {% endblock %} {% if c.userobj.sysadmin %} {% block select_status %}

    {{ _('Status') }}

    {% endblock %} {% endif %}
    {% if not disable_keyword or c.userobj.sysadmin %}
    {% endif %} {% block result_table %}

    {{ _('Results: ') }} {{ utilizations|length }}

    {% if c.userobj.sysadmin %} {% endif %} {% for row in utilizations %} {% if c.userobj.sysadmin %} {% if row.approval == True %} {% else %} {% endif %} {% endif %} {% endfor %}
    {{ _('Title') }} {{ _('Issue resolutions') }} {{ _('Dataset') }} {{ _('Data resource') }} {{ _('Comments') }} {{ _('Registered') }}{{ _('Status') }}
    {{ row.title }}
    {% if row.issue_resolution > 0 %} issue resolution badge {% endif %}
    {{ row.issue_resolution }}
    {{ row.package_name|truncate(30) }} {{ row.resource_name|truncate(20) }} {{ row.comment }} {{ row.created.strftime('%Y/%m/%d') }}{{ _('Approved') }}{{ _('Unapproved') }}
    {% endblock %} {% endblock %} {% block secondary %}{% endblock %} {%- block scripts %} {{ super() }} {% asset 'feedback/feedback-search-js' %} {% endblock -%} {% endif %}