{% extends "master.html" %} {% block title %}Log in{% endblock %} {% block content %} {% if session %}

Logged in

You are now logged in as {% firstof session.person.fullname session.person.name %}. {% if returnPath %} If you're not automatically redirected to where you were, please continue or use the navigation above. {% endif %}
{% if view.canApprovePersons %} {% if view.registry.persons.getPending.count %}
There are {{ view.registry.persons.getPending.count }} pending registrations.
{% endif %} {% endif %} {% else %}

Log in

{% if isAuthenticateFail %}
Sorry, wrong user name or password.
{% else %} {% if returnPath %}
You'll need to log in before you can access this area.
{% endif %} {% endif %}

{% if canCreatePerson %} Register or log in: {% else %} Please log in now: {% endif %}

{% endif %} {% endblock %}