summaryrefslogtreecommitdiff
path: root/templates/demo/income_statement.html
blob: 970769a73857b537941ab0748fb59d1ef0d786b3 (plain)
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
  2. "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
  4. <head>
  5. <title><?lsmb titlebar ?></title>
  6. <meta http-equiv="Pragma" content="no-cache" />
  7. <meta http-equiv="Expires" content="-1" />
  8. <link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
  9. <link rel="stylesheet" href="css/<?lsmb stylesheet ?>" type="text/css" title="LedgerSMB stylesheet" />
  10. <meta http-equiv="content-type" content="text/html; charset=UTF-8" />
  11. <meta name="robots" content="noindex,nofollow" />
  12. <style type="text/css">
  13. a {
  14. color: inherit;
  15. background-color: inherit;
  16. text-decoration: none;
  17. }
  18. a:link {
  19. color: inherit;
  20. background-color: inherit;
  21. text-decoration: none;
  22. }
  23. a:visited {
  24. color: inherit;
  25. background-color: inherit;
  26. text-decoration: none;
  27. }
  28. a:hover {
  29. color: inherit;
  30. background-color: inherit;
  31. text-decoration: none;
  32. border-bottom: thin dashed;
  33. }
  34. </style>
  35. </head>
  36. <body>
  37. <h2 align="center">
  38. <?lsmb company ?>
  39. <br /><?lsmb address ?>
  40. <br />INCOME STATEMENT
  41. <br /><?lsmb period ?>
  42. </h2>
  43. <?lsmb IF department ?>
  44. <h4>Department: <?lsmb department ?></h4>
  45. <?lsmb END ?>
  46. <?lsmb IF projectnumber ?>
  47. <h4>Project Number: <?lsmb projectnumber ?></h4>
  48. <?lsmb END ?>
  49. <table width="100%" border="0">
  50. <tr>
  51. <th width="400" align="left" colspan="2">INCOME<br /><hr width="300" size="5" align="left" noshade="noshade" /></th>
  52. <th><?lsmb this_period ?></th>
  53. <th><?lsmb last_period ?></th>
  54. </tr>
  55. <?lsmb FOREACH income_account ?>
  56. <?lsmb loop_count = loop.count - 1 ?>
  57. <tr>
  58. <td width="4"> </td>
  59. <td><?lsmb income_account.${loop_count} ?></td>
  60. <td align="right"><?lsmb income_this_period.${loop_count} ?></td>
  61. <td align="right"><?lsmb income_last_period.${loop_count} ?></td>
  62. </tr>
  63. <?lsmb END ?>
  64. <tr>
  65. <td colspan="2"> </td>
  66. <td><hr noshade="noshade" size="1" /></td>
  67. <td><hr noshade="noshade" size="1" /></td>
  68. </tr>
  69. <tr valign="top">
  70. <td> </td>
  71. <th align="left">TOTAL INCOME</th>
  72. <td align="right"><?lsmb total_income_this_period ?><hr noshade="noshade" size="2" /></td>
  73. <td align="right"><?lsmb total_income_last_period ?><hr noshade="noshade" size="2" /></td>
  74. </tr>
  75. <tr>
  76. <th align="left" colspan="2">EXPENSES<br /><hr width="300" size="5" align="left" noshade="noshade" /></th>
  77. </tr>
  78. <?lsmb FOREACH expense_account ?>
  79. <?lsmb loop_count = loop.count - 1 ?>
  80. <tr>
  81. <td> </td>
  82. <td><?lsmb expense_account.${loop_count} ?></td>
  83. <td align="right"><?lsmb expenses_this_period.${loop_count} ?></td>
  84. <td align="right"><?lsmb expenses_last_period.${loop_count} ?></td>
  85. </tr>
  86. <?lsmb END ?>
  87. <tr>
  88. <td colspan="2"> </td>
  89. <td><hr noshade="noshade" size="1" /></td>
  90. <td><hr noshade="noshade" size="1" /></td>
  91. </tr>
  92. <tr valign="top">
  93. <td> </td>
  94. <th align="left">TOTAL EXPENSES</th>
  95. <td align="right"><?lsmb total_expenses_this_period ?><br /><hr noshade="noshade" size="2" /></td>
  96. <td align="right"><?lsmb total_expenses_last_period ?><br /><hr noshade="noshade" size="2" /></td>
  97. </tr>
  98. <tr valign="top">
  99. <th align="left" colspan="2">INCOME / (LOSS)</th>
  100. <td align="right"><?lsmb total_this_period ?><br /><hr noshade="noshade" size="2" /></td>
  101. <td align="right"><?lsmb total_last_period ?><br /><hr noshade="noshade" size="2" /></td>
  102. </tr>
  103. </table>
  104. </body>
  105. </html>