{% extends "page.html" %}
{% block subtitle %}{{ _('About') }}{% endblock %}
{% block breadcrumb_content %}
{% link_for _('Approvals'), controller='ckanext.workflow.controller:WorkflowController', action='pending_list' %}
{% endblock %}
{% block primary %}
Waiting for approval:
{% for package in datasets %}
-
{% link_for package.title, controller='package', action='read', id=package.name %}
{% if h.is_revision(package) %}
revision
{% endif %}
{% else %}
There are no pending datasets
{% endfor %}
{% endblock %}
{% block secondary %}{% endblock %}