{% extends 'base.html' %} {% block title %}{{ title }}{% endblock %} {% block content %}

{{ title }}

All DRS IDs in ECV

{% for dataset in datasets %}
{{ dataset.opensearch_fields.title }}

Summary

Total Files {{ dataset.total_files }}
Total Files without DRS {{ dataset.files_without_drs }}
{% for field, value in dataset.opensearch_fields.items() %} {% endfor %}
{{ field }} {% if value is string %} {{ value }} {% elif value is none %} {{ value }} {% elif value is mapping %} {{ value }} {% else %}
    {% for item in value %}
  • {{ item }}
  • {% endfor %}
{% endif %}

{% endfor %}
{% endblock %} {% block tail_js %} {% endblock %}