{% extends "base.html" %} {% 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.isprivate %}Private{% else %}Public{% endif %} {% if project.status == status_types.inactive %}Inactive{% endif %}

    {% if project.description %}

    {{project.description}}

    {% endif %}

    Created by {{ project.creator.display_name }}

  • {% 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 %}