{% extends 'admin/master.html' %} {% block body %}

{{ gettext("Back to the labs") }}

{{ gettext("Welcome to the administration panel") }}


{% if sql_active %}

{{ gettext("Here you can create student accounts, add them in groups, and allow those groups to use laboratories.") }}

{% else %}

{{ gettext("No SQLAlchemy configured") }}

{{ gettext("If you want to be able to add students, groups and permissions, please go to the documentation to see how to add SQLAlchemy support:") }}

{% endif %} {% if mongo_active %}

{{ gettext("You can also see when students used the laboratory by checking the User sessions.") }}

{% else %}

{{ gettext("No PyMongo configured") }}

{{ gettext("If you want to be able to store user sessions to know who used when each laboratory, please go to the documentation to see how to add PyMongo support:") }}

{% endif %} {% endblock %}