{% extends 'base.html' %} {% block title %}Datasets{% endblock %} {% block content %}
{% for n in datasets %}
{{n.title}}
{% if n.desc %}

{{n.desc}}

{% endif %}
{% endfor %}
{% endblock %}