{% 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 #} {% block main %}

{{ _("History of public accounts") }}

Back
{% if hint != "" %}
{% if not is_success %}

{% else %}

{% endif %} {{ hint }}

{% endif %}
    {% for account in public_accounts %} {% if account.account_no == selected_account.number %}
  • {% else %}
  • {% endif %} {{ account.user.username }}
  • {% endfor %}
{% if selected_account.history %} {% for entry in selected_account.history %} {% endfor %}
{{ _("Date") }} {{ _("Amount") }} {{ _("Counterpart") }} {{ _("Subject") }}
{{entry.date}} {{ entry.sign }} {{ entry.amount }} {{ _("account") }} #{{ entry.counterpart }} {{ entry.subject }}
{% if back %} ‹... {% endif %} {% for pagej in pages %} {{ pagej }} {% endfor %} {% if forth %} ...› {% endif %}
{% else %}

{{ _("No history for account #{account_number} ({account_name}) yet").format(account_number=selected_account.number, account_name=selected_account.name) }}

{% endif %}
{% endblock main %}