{% extends "base.html" %} {% block title %} | Categories{% endblock %} {% block bodydata %} data-project-id="{{project.id}}"{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

Categories {% if project.categories.all %} Create new category {% endif %}

{% for category in project.categories.all %} {% if forloop.first %}
    {% endif %}
  • {{category.name}} {% if category.status == 'inactive' %}INACTIVE{% endif %}

    {% if category.description %}

    {{category.description}}

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

We couldn't find any categories for this project.

You can use categories to define which data you want to collect for your project. For instance, if you want to create a map for public transport, you can create a category for each bus stops and train stations.

Create new category
{% endfor %}
{% if project.categories.all %}
You can use categories to define which data you want to collect for your project. For instance, if you want to create a map for public transport, you can create a category for each bus stops and train stations.
{% endif %}
{% endblock %} {% block libraries %} {% endblock %}