{% extends "base.html" %} {% block title %}Search Datasets{% endblock %} {% block content %}

Dataset Browser

{% if all_tags %}
{% for tag in all_tags %} {% endfor %}
{% endif %}
{% if entries %}
{% for entry in entries %}

{{ entry.name }}

by {{ entry.did }}
{% if entry.description %}

{{ entry.description }}

{% endif %} {% if entry.tags %}
{% for tag in entry.tags %} {{ tag }} {% endfor %}
{% endif %}
{% endfor %}
{% if cursor %} {% endif %} {% elif q %}

No datasets found for "{{ q }}".

{% else %}

Enter a search query to find datasets.

{% endif %}
{% endblock %}