{% extends 'base.html' %} {% load project_attributes %} {% block title %} | Dashboard{% endblock %} {% block main %}
{% include 'snippets/messages.html' %}

Manage your projects {% if projects %} Create new Project {% endif %}

{% for project in projects %} {% if forloop.first %}
    {% endif %}
  • {% if project.islocked %}{% endif %} {{ project.name }}

    {% if project.description %}

    {{ project.description }}

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

We couldn't find any projects you are eligible to manage.

You can create a new project if you want to start your own map.

Create a new project
{% endfor %}
Your applications {% if user.is_superuser %}Superuser tools{% endif %} Other projects

Extensions

{% for extension in extensions %} {{ extension.name }} {% if extension.version %}v{{ extension.version }}{% endif %} {% empty %}
No extensions have been installed.
{% endfor %}
{% endblock %}