{% if c.options['organization'] == None %}
{% 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') }}% |
{% trans %}Dataset{% endtrans %} | {% if c.options['include_sub_organizations'] %}{% trans %}Organization{% endtrans %} | {% endif %}{% 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'] }} | {% if c.options['include_sub_organizations'] %}{{ row_dict['organization_title'] }} | {% endif %}{{ 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' }} |