{% extends 'base.html' %}
{% block title %}{{ title }}{% endblock %}
{% block content %}
{{ title }}
All DRS IDs in ECV
{% for drs in drs_ids %}
- {{ drs }}
{% endfor %}
{% for dataset in datasets %}
Summary
| Total Files |
{{ dataset.total_files }} |
| Total Files without DRS |
{{ dataset.files_without_drs }} |
{% for field, value in dataset.opensearch_fields.items() %}
| {{ 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 %}
Show Files Without DRS
{% endfor %}
{% endblock %}
{% block tail_js %}
{% endblock %}