{% ckan_extends %} {# The only purpose of this is to remove the (non-functional) Delete button Just modified the code from https://github.com/ckan/ckan/blob/master/ckan/templates/organization/bulk_process.html #} {% block form %} {% if page.item_count %}
{% for package in packages %} {% set truncate = truncate or 180 %} {% set truncate_title = truncate_title or 80 %} {% set title = package.title or package.name %} {% set notes = h.markdown_extract(package.notes, extract_length=truncate) %} {% endfor %}
{{ _('Edit') }}

{{ h.link_to(h.truncate(title, truncate_title), h.url_for(package.type ~ '.read', id=package.name)) }} {% if package.get('state', '').startswith('draft') %} {{ _('Draft') }} {% elif package.get('state', '').startswith('deleted') %} {{ _('Deleted') }} {% endif %} {% if package.private %} {{ _('Private') }} {% endif %}

{% if notes %}

{{ notes|urlize }}

{% endif %}
{% else %}

{{ _('This organization has no datasets associated to it') }}

{% endif %} {% endblock %}