{% extends "base.html" %} {% load staticfiles %} {% block container %}
{% csrf_token %}
{% if datasets.count > 0 %}
{% for d in datasets %}

{{ d.title }}  

{% endfor %}
{% else %}

There are no datasets registered.

{% endif %}
{% endblock container %}