{% extends "base.html" %} {% block title %}Manage Projects — Ontoref{% endblock title %} {% block content %}

Manage Projects

{% if registry_path %} {{ registry_path }} {% endif %}
{% if error %}
{{ error }}
{% endif %}

Registered Projects

{% if projects %}
{% for p in projects %} {% endfor %}
Slug Root Auth Actions
{{ p.slug }} {{ p.root }} {% if p.auth %} protected {% else %} open {% endif %}
{% else %}
No projects registered. Add one below.
{% endif %}

Add Project

{% endblock content %}