{% extends "base.html" %} {% block title %} | Data groupings{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

Data groupings {% if project.groupings.all %} Create new data grouping {% endif %}

{% for grouping in project.groupings.all %} {% if forloop.first %}
    {% endif %}
  • {{grouping.name}}

    {% if grouping.description %}

    {{grouping.description}}

    {% endif %}
  • {% if forloop.last %}
{% endif %} {% empty %}

We couldn't find any data groupings for this project.

You can use data groupings to provide users access to a subset of all data contributed to the project. For instance, you can create a data grouping that includes all tube stations that were added during the last seven days.

{% if project.categories.all %} Create new data grouping {% endif %}
{% if not project.categories.all %}

However, before you can add a grouping to the project, you need to create at least one category.

Create new category

{% endif %} {% endfor %}
You can use data groupings to provide users access to a subset of all data contributed to the project. For instance, you can create a data grouping that includes all tube stations that were added during the last seven days.
{% endblock %}