{% extends "issues/base.html" %} {% import "issues/common.html" as common with context %} {% set ckan_28 = True if h.ckan_version().startswith('2.8') else False %} {% block primary_content_inner %}

{% block page_heading %} {{ _('Reported issues') }} {% endblock %}

{% if comments %} {% else %} {{ _('No reported comments.') }} {% endif %}
{% endblock %} {% block breadcrumb_content %}
  • {% link_for _('Organizations'), controller='organization', action='index' %}
  • {% link_for organization.display_name|truncate(35), controller='organization', action='read', id=organization.name %}
  • {% link_for 'Issues', named_route='issues.issues_for_organization', org_id=organization.name %}
  • Reported Issues
  • {% endblock %} {%- macro comment_description(comment) %}
  • {{ h.gravatar(comment.user.email_hash, 30) }} {{ comment.user.fullname }} created comment {{ comment.title }}. {{ h.time_ago_from_timestamp(comment.created) }} {{ _('See dataset') }}


    {{ comment.comment|safe }}

  • {% endmacro %}