#include <infocon.style>
#include "account.inc"

<page func=InfoCon title="Kontoführung">

<blockquote>

Die folgenden Konten stehen zur Verfügung:

<p><ul>
<?
  $accounts = new AccountName(false);

  $account = new Accounting(false);
  foreach ($accounts->getAccounts('eur') as $row) {
    printf ("<li><a href=\"query.php?blzkto=%s\">%s</a> (Stand: %6.2f EUR)",
      urlencode($row->blz_kto), $row->name, $account->sum($row->blz_kto));
  }

  $account = new AccountingDM(false);
  foreach ($accounts->getAccounts('dm') as $row) {
    printf ("<li><a href=\"query.php?blzkto=%s&cur=dm\">%s</a> (Stand: %6.2f DM)",
      urlencode($row->blz_kto), $row->name, $account->sum($row->blz_kto));
  }
?>
</ul>

</blockquote>

</page>

# Local variables:
# mode: text
# mode: auto-fill
# end:
