diff options
author | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-01 01:16:38 +0000 |
---|---|---|
committer | christopherm <christopherm@4979c152-3d1c-0410-bac9-87ea11338e46> | 2006-09-01 01:16:38 +0000 |
commit | ac5b087ea2d9ba7428d367aaeb288534158fee9a (patch) | |
tree | 2dbe0bdea0b653a215ba9ddfdf627cb57855050d /templates/Norwegian-balance_sheet.html |
Initial Import
git-svn-id: https://ledger-smb.svn.sourceforge.net/svnroot/ledger-smb/ledger-smb@1 4979c152-3d1c-0410-bac9-87ea11338e46
Diffstat (limited to 'templates/Norwegian-balance_sheet.html')
-rwxr-xr-x | templates/Norwegian-balance_sheet.html | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/templates/Norwegian-balance_sheet.html b/templates/Norwegian-balance_sheet.html new file mode 100755 index 00000000..20474329 --- /dev/null +++ b/templates/Norwegian-balance_sheet.html @@ -0,0 +1,100 @@ + +<body bgcolor=ffffff> + +<h2 align=center> +<%company%> +<br><%address%> + +<p>B A L A N S E +<br><%period%> +</h2> + +<table border=0> +<tr> + <th align=left width=400 colspan=2>AKTIVA<br><hr align=left width=250 size=5 noshade></th> + <th><%this_period%></th> + <th><%last_period%></th> +</tr> + +<%foreach asset_account%> +<tr> + <td> </td> + <td><%asset_account%></td> + <td align=right><%asset_this_period%></td> + <td align=right><%asset_last_period%></td> +</tr> +<%end asset_account%> + +<tr> + <td colspan=2> </td> + <td><hr noshade size=1></td> + <td><hr noshade size=1></td> +</tr> + +<tr valign=top> + <th align=left colspan=2>TOTALE AKTIVA</th> + <td align=right><%total_assets_this_period%><hr noshade size=2></td> + <td align=right><%total_assets_last_period%><hr noshade size=2></td> +</tr> + +<tr> + <th align=left colspan=4>PASSIVA<b><hr align=left width=250 size=5 noshade></th> +</tr> + +<%foreach liability_account%> +<tr> + <td></td> + <td><%liability_account%></td> + <td align=right><%liability_this_period%></td> + <td align=right><%liability_last_period%></td> +</tr> +<%end liability_account%> + +<tr> + <td colspan=2> </td> + <td><hr noshade size=1></td> + <td><hr noshade size=1></td> +</tr> + +<tr valign=top> + <td></td> + <th align=left>Total gjeld</th> + <td align=right><%total_liabilities_this_period%><br><hr noshade size=2</td> + <td align=right><%total_liabilities_last_period%><br><hr noshade size=2</td> +</tr> + +<tr> + <th align=left colspan=4>EGENKAPITAL<br><hr align=left width=250 size=5 noshade></th> +</tr> + +<%foreach equity_account%> +<tr> + <td></td> + <td><%equity_account%></td> + <td align=right><%equity_this_period%></td> + <td align=right><%equity_last_period%></td> +</tr> +<%end equity_account%> + +<tr> + <td colspan=2> </td> + <td><hr noshade size=1></td> + <td><hr noshade size=1></td> +</tr> + +<tr valign=top> + <td></td> + <th align=left>Total egenkapital</th> + <td align=right><%total_equity_this_period%><br><hr noshade size=2</td> + <td align=right><%total_equity_last_period%><br><hr noshade size=2</td> +</tr> + +<tr valign=top> + <th align=left colspan=2>TOTAL GJELD OG EGENKAPITAL</th> + <td align=right><%total_this_period%><br><hr noshade size=2></td> + <td align=right><%total_last_period%><br><hr noshade size=2></td> +</tr> +</table> + + + |