summaryrefslogtreecommitdiff
path: root/templates/Swedish-income_statement.html
blob: 46ff0a60cc5c2dd2c6ab4ba05095ad720f0ffeb2 (plain)
  1. <body bgcolor=ffffff>
  2. <h2 align=center>
  3. <%company%>
  4. <br><%address%>
  5. <p>D R I F T K O S T N A D
  6. <br><%period%>
  7. </h2>
  8. <table width=100% border=0>
  9. <tr>
  10. <th width=400 align=left colspan=2><br></th>
  11. <th><%this_period%></th>
  12. <th><%last_period%></th>
  13. </tr>
  14. <tr>
  15. <th align=left colspan=2>INTÄKTER<br><hr width=300 size=5 align=left noshade></th>
  16. </tr>
  17. <%foreach income_account%>
  18. <tr>
  19. <td width=4> </td>
  20. <td><%income_account%></td>
  21. <td align=right><%income_this_period%></td>
  22. <td align=right><%income_last_period%></td>
  23. </tr>
  24. <%end income_account%>
  25. <tr>
  26. <td colspan=2> </td>
  27. <td><hr noshade size=1></td>
  28. <td><hr noshade size=1></td>
  29. </tr>
  30. <tr valign=top>
  31. <td> </td>
  32. <th align=left>Totala intäkter</th>
  33. <td align=right><%total_income_this_period%><hr noshade size=2></td>
  34. <td align=right><%total_income_last_period%><hr noshade size=2></td>
  35. </tr>
  36. <tr>
  37. <th align=left colspan=2>UTGIFTER<br><hr width=300 size=5 align=left noshade></th>
  38. </tr>
  39. <%foreach expense_account%>
  40. <tr>
  41. <td> </td>
  42. <td><%expense_account%></td>
  43. <td align=right><%expenses_this_period%></td>
  44. <td align=right><%expenses_last_period%></td>
  45. </tr>
  46. <%end expense_account%>
  47. <tr>
  48. <td colspan=2> </td>
  49. <td><hr noshade size=1></td>
  50. <td><hr noshade size=1></td>
  51. </tr>
  52. <tr valign=top>
  53. <td> </td>
  54. <th align=left>Totala utgifter</th>
  55. <td align=right><%total_expenses_this_period%><br><hr noshade size=2</td>
  56. <td align=right><%total_expenses_last_period%><br><hr noshade size=2</td>
  57. </tr>
  58. <tr valign=top>
  59. <th align=left colspan=2>RESULTAT</th>
  60. <td align=right><%total_this_period%><br><hr noshade size=2></td>
  61. <td align=right><%total_last_period%><br><hr noshade size=2></td>
  62. </tr>
  63. </table>