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

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

{% for project in admin_projects %} {% if forloop.first %}
    {% 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 community map.

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

Extensions

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