diff options
Diffstat (limited to 'templates/Danish-income_statement.html')
-rwxr-xr-x | templates/Danish-income_statement.html | 42 |
1 files changed, 21 insertions, 21 deletions
diff --git a/templates/Danish-income_statement.html b/templates/Danish-income_statement.html index c0652977..9592b37e 100755 --- a/templates/Danish-income_statement.html +++ b/templates/Danish-income_statement.html @@ -1,29 +1,29 @@ <body bgcolor=ffffff> <h2 align=center> -<%company%> -<br><%address%> +<?lsmb company ?> +<br><?lsmb address ?> <p>DRIFTSREGNSKAB -<br><%period%> +<br><?lsmb period ?> </h2> <table width=100% border=0> <tr> <th width=400 align=left colspan=2>INDTÆGTER<br><hr width=300 size=5 align=left noshade></th> - <th><%this_period%></th> - <th><%last_period%></th> + <th><?lsmb this_period ?></th> + <th><?lsmb last_period ?></th> </tr> -<%foreach income_account%> +<?lsmb foreach income_account ?> <tr> <td width=4> </td> - <td><%income_account%></td> - <td align=right><%income_this_period%></td> - <td align=right><%income_last_period%></td> + <td><?lsmb income_account ?></td> + <td align=right><?lsmb income_this_period ?></td> + <td align=right><?lsmb income_last_period ?></td> </tr> -<%end income_account%> +<?lsmb end income_account ?> <tr> <td colspan=2> </td> @@ -34,22 +34,22 @@ <tr valign=top> <td> </td> <th align=left>Samlede indtægter</th> - <td align=right><%total_income_this_period%><hr noshade size=2></td> - <td align=right><%total_income_last_period%><hr noshade size=2></td> + <td align=right><?lsmb total_income_this_period ?><hr noshade size=2></td> + <td align=right><?lsmb total_income_last_period ?><hr noshade size=2></td> </tr> <tr> <th align=left colspan=2>UDGIFTER<br><hr width=300 size=5 align=left noshade></th> </tr> -<%foreach expense_account%> +<?lsmb foreach expense_account ?> <tr> <td> </td> - <td><%expense_account%></td> - <td align=right><%expenses_this_period%></td> - <td align=right><%expenses_last_period%></td> + <td><?lsmb expense_account ?></td> + <td align=right><?lsmb expenses_this_period ?></td> + <td align=right><?lsmb expenses_last_period ?></td> </tr> -<%end expense_account%> +<?lsmb end expense_account ?> <tr> <td colspan=2> </td> @@ -60,14 +60,14 @@ <tr valign=top> <td> </td> <th align=left>Samlede udgifter</th> - <td align=right><%total_expenses_this_period%><br><hr noshade size=2</td> - <td align=right><%total_expenses_last_period%><br><hr noshade size=2</td> + <td align=right><?lsmb total_expenses_this_period ?><br><hr noshade size=2</td> + <td align=right><?lsmb total_expenses_last_period ?><br><hr noshade size=2</td> </tr> <tr valign=top> <th align=left colspan=2>RESULTAT</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> + <td align=right><?lsmb total_this_period ?><br><hr noshade size=2></td> + <td align=right><?lsmb total_last_period ?><br><hr noshade size=2></td> </tr> </table> |