{% if c.options['organization'] == None %} {% for row in c.data['table'] %} {% endfor %}
{% trans %}Organization{% endtrans %} {% trans %}Broken datasets{% endtrans %} {% trans %}Broken links{% endtrans %} % {% trans %}Broken links{% endtrans %}
{{ h.link_to(row['organization_title'], h.report__relative_url_for(organization=row['organization_name'])) }} {{ row['broken_package_count'] }} {{ row['broken_resource_count'] }} {{ row.get('broken_resource_percent') }}%
{% else %} {% if c.options['include_sub_organizations'] %} {% endif %} {% for row_dict in c.data['table'] %} {% if c.options['include_sub_organizations'] %} {% endif %} {% endfor %}
{% trans %}Dataset{% endtrans %}{% trans %}Organization{% endtrans %}{% trans %}Res{% endtrans %} {% trans %}URL{% endtrans %} {% trans %}Status{% endtrans %} {% trans %}Reason{% endtrans %} {% trans %}No. of fails{% endtrans %} {% trans %}First fail{% endtrans %} {% trans %}Latest fail{% endtrans %} {% trans %}Last success{% endtrans %}
{{ row_dict['dataset_title'] }}{{ row_dict['organization_title'] }}{{ row_dict['resource_position'] }} {{ row_dict['resource_url'] }} {{ row_dict.get('status', 'not recorded') }} {{ row_dict.get('reason', 'not recorded') }} {{ row_dict.get('failure_count', 'not recorded') }} {{ h.render_datetime(row_dict.get('first_failure')) if row_dict.get('first_failure') else 'not recorded' }} {{ h.render_datetime(row_dict.get('last_updated')) if row_dict.get('last_updated') else 'not recorded' }} {{ h.render_datetime(row_dict.get('last_success')) if row_dict.get('last_success') else 'not recorded' }}
{% endif %}