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

Subsets {% if project.subsets.all %} Create new subset {% endif %}

{% for subset in project.subsets.all %} {% if forloop.first %}
    {% endif %}
  • {{subset.name}}

    {% if subset.description %}

    {{subset.description}}

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

We couldn't find any subsets for this project.

Create new subset
{% endfor %}
{% endblock %}