2023-04-16 03:31:40 +02:00
|
|
|
@extends(templates/layout_normal)
|
|
|
|
|
|
|
|
@section(main)
|
2023-05-01 23:37:30 +02:00
|
|
|
<h2>
|
|
|
|
<?= $community->getName() ?>
|
|
|
|
<?php if ($editPermission): ?>
|
|
|
|
<span class="small">[<a href="<?= Container::$routeCollection->getRoute('community-edit')->generateLink(['communityId' => $community->getId()]) ?>">edit</a>]</span>
|
|
|
|
<?php endif; ?>
|
|
|
|
</h2>
|
|
|
|
|
|
|
|
<p class="marginTop"><a href="<?= Container::$routeCollection->getRoute('community.settings')->generateLink(['communityId' => $community->getId()]) ?>">Settings</a></p>
|
2023-04-16 03:31:40 +02:00
|
|
|
|
|
|
|
<div class="gridContainer marginTop">
|
|
|
|
<div>
|
|
|
|
<h3 class="marginBottom">Upcoming events</h3>
|
|
|
|
<?php if (count($upcomingEvents) > 0): ?>
|
|
|
|
<?php foreach ($upcomingEvents as $event): ?>
|
|
|
|
<!-- todo -->
|
|
|
|
<?php endforeach; ?>
|
|
|
|
<?php else: ?>
|
|
|
|
<p>There is no upcoming event.</p>
|
|
|
|
<?php endif; ?>
|
|
|
|
</div>
|
|
|
|
<div>
|
2023-04-28 21:06:18 +02:00
|
|
|
<?php
|
|
|
|
$mainCurrencyCode = $community->getMainCurrency()->getCode();
|
|
|
|
$mainCurrencyRoundDigits = $community->getMainCurrency()->getRoundDigits();
|
|
|
|
?>
|
2023-04-16 03:31:40 +02:00
|
|
|
<h3 class="marginBottom">Finances</h3>
|
2023-05-01 19:32:35 +02:00
|
|
|
<a href="<?= Container::$routeCollection->getRoute('community.transactions')->generateLink(['communityId' => $community->getId()]) ?>">Transactions</a>
|
|
|
|
<table class="fullWidth marginTop">
|
2023-04-16 03:31:40 +02:00
|
|
|
<tr>
|
2023-05-01 22:01:11 +02:00
|
|
|
<td class="bold">You owe</td>
|
|
|
|
<td class="mono red" style="text-align: right;"><?= number_format($debtBalance, $mainCurrencyRoundDigits) ?> <?= $mainCurrencyCode ?></td>
|
2023-04-16 03:31:40 +02:00
|
|
|
</tr>
|
2023-05-01 23:02:57 +02:00
|
|
|
<?php foreach ($debtItems as $item): ?>
|
2023-05-01 22:01:11 +02:00
|
|
|
<tr>
|
2023-05-01 23:02:57 +02:00
|
|
|
<td class="small"><?= $item['payee']->getUser()->getDisplayName() ?></td>
|
|
|
|
<td class="small mono red" style="text-align: right;"><?= number_format($item['amount'], $mainCurrencyRoundDigits) ?> <?= $mainCurrencyCode ?></td>
|
2023-05-01 22:01:11 +02:00
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
2023-04-16 03:31:40 +02:00
|
|
|
<tr>
|
2023-05-01 22:01:11 +02:00
|
|
|
<td class="bold">You're owed</td>
|
|
|
|
<td class="mono green" style="text-align: right;"><?= number_format($outstandingBalance, $mainCurrencyRoundDigits) ?> <?= $mainCurrencyCode ?></td>
|
2023-04-16 03:31:40 +02:00
|
|
|
</tr>
|
2023-05-01 23:02:57 +02:00
|
|
|
<?php foreach ($outstandingItems as $item): ?>
|
2023-05-01 22:01:11 +02:00
|
|
|
<tr>
|
2023-05-01 23:02:57 +02:00
|
|
|
<td class="small"><?= $item['payer']->getUser()->getDisplayName() ?></td>
|
|
|
|
<td class="small mono green" style="text-align: right;"><?= number_format($item['amount'], $mainCurrencyRoundDigits) ?> <?= $mainCurrencyCode ?></td>
|
2023-05-01 22:01:11 +02:00
|
|
|
</tr>
|
|
|
|
<?php endforeach; ?>
|
2023-04-16 03:31:40 +02:00
|
|
|
<tr>
|
2023-05-01 22:01:11 +02:00
|
|
|
<td class="bold">Your balance</td>
|
|
|
|
<td class="mono <?= $balance < 0 ? 'red' : ($balance > 0 ? 'green' : '') ?>" style="text-align: right;;"><?= number_format($balance, $mainCurrencyRoundDigits) ?> <?= $mainCurrencyCode ?></td>
|
2023-04-16 03:31:40 +02:00
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
@endsection
|