Merge branch 'feature/split_accounts' into dev
This commit is contained in:
@@ -103,7 +103,7 @@
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style>
|
<style>
|
||||||
.amount{ text-align: right }
|
.amount{ text-align: right; whitespace: nowrap }
|
||||||
</style>
|
</style>
|
||||||
|
|
||||||
<svelte:head>
|
<svelte:head>
|
||||||
@@ -155,18 +155,11 @@
|
|||||||
</th>
|
</th>
|
||||||
{/each}
|
{/each}
|
||||||
<td class="amount">
|
<td class="amount">
|
||||||
{t('external gains')}<br/>
|
{sums[-1].toFixed(2)} {account.currency} {t('external gains')}<br/>
|
||||||
{sums[-1].toFixed(2)} {account.currency}
|
-{sums[0].toFixed(2)} {account.currency} {t('external expenses')}<br/>
|
||||||
|
{(sums[-1]-sums[0]).toFixed(2)} {account.currency} {t('sum external')}
|
||||||
</td>
|
</td>
|
||||||
<td class="amount">
|
<td colspan="3"></td>
|
||||||
{t('external expenses')}<br/>
|
|
||||||
{sums[0].toFixed(2)} {account.currency}
|
|
||||||
</td>
|
|
||||||
<td class="amount">
|
|
||||||
{t('sum external')}<br/>
|
|
||||||
{(sums[-1]-sums[0]).toFixed(2)} {account.currency}
|
|
||||||
</td>
|
|
||||||
<td></td>
|
|
||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|||||||
Reference in New Issue
Block a user