{% extends "base.html" %} {% block title %}Welcome to {{SITE_NAME}}{% endblock %} {% block navbar %} Home {% endblock %} {% block content %}

Welcome to the {{SITE_NAME}} database


{% if user.is_anonymous %}

Access requires a user account. If you are a member of the {{SITE_NAME}} database, you should be able to log-in using your username/password.

If you are not a member of {{SITE_NAME}}, but would like to know more, click on the contact link on the menu bar, above right.

{% else %}

Available features :


You are currently logged in as {% if user.get_full_name %}{{user.get_full_name}}{% else %}{{user.username}}{% endif %}.

{% endif %} {% block form %} {% endblock %}

{% endblock %}