{% set layout_name = "basic" %} {% extends "layout/html5.html" %} {% block body %} {% if UserContext %}{% include "partials/nav.html" %}{% endif %}
{% if UserContext %}{% include "partials/header_mobile.html" %}{% endif %}
{% for item in ui.getNodes('Notification').concat(notification or []) %}{% if item.checker(handler) %}
{{ _(item.name).format(item.args.args or [])|nl2br|safe }}
{% endif %}{% endfor %} {% block content %}{% endblock %}
{% include "partials/footer.html" %}
{% if UserContext and not handler.user._id %}{% include "partials/login_dialog.html" %}{% endif %} {% endblock %}