{% extends "base.html" %} {# This file is part of GNU TALER. Copyright (C) 2014, 2015, 2016 Taler Systems SA TALER is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public License as published by the Free Software Foundation; either version 2.1, or (at your option) any later version. TALER is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details. You should have received a copy of the GNU Lesser General Public License along with TALER; see the file COPYING. If not, see @author Marcello Stanisci @author Florian Dold #} {% block main %}

{{ _("Welcome to the {currency} Bank!").format(currency=settings_value("TALER_CURRENCY")) }}

{% if settings_value("ALLOW_REGISTRATIONS") %}

{% autoescape off %} {{ _("If you are a new customer please register. Registration is fast and free, and it gives you a registration bonus of 100 {currency}").format(register_link=url('register'), currency=settings_value("TALER_CURRENCY")) }} {% endautoescape %}

{% else %}

{{ _("Registrations are not open to the public.") }}

{% endif %}

{% autoescape off %} {{ _("To view transactions of public accounts, please click here.").format(public_accounts=url('public-accounts')) }} {% endautoescape %}

{% endblock main %}