summaryrefslogtreecommitdiff
path: root/templates/French-income_statement.html
blob: e76df09a1d514d13c8773c6d970708471fde09fb (plain)
  1. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional">
  2. <html>
  3. <head>
  4. <title>Compte de Résultat</title>
  5. <meta HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=iso-8859-15">
  6. </head>
  7. <body bgcolor=ffffff>
  8. <h2 align=center>
  9. <%company%>
  10. <br><%address%>
  11. <p>Compte de Résultat
  12. <br><%period%>
  13. </h2>
  14. <table width=100% border=0>
  15. <tr>
  16. <th width=400 align=left colspan=2>RECETTES<br><hr width=300 size=5 align=left noshade></th>
  17. <th><%this_period%></th>
  18. <th><%last_period%></th>
  19. </tr>
  20. <%foreach income_account%>
  21. <tr>
  22. <td width=4> </td>
  23. <td><%income_account%></td>
  24. <td align=right><%income_this_period%></td>
  25. <td align=right><%income_last_period%></td>
  26. </tr>
  27. <%end income_account%>
  28. <tr>
  29. <td colspan=2> </td>
  30. <td><hr noshade size=1></td>
  31. <td><hr noshade size=1></td>
  32. </tr>
  33. <tr valign=top>
  34. <td> </td>
  35. <th align=left>Total Recettes</th>
  36. <td align=right><%total_income_this_period%><hr noshade size=2></td>
  37. <td align=right><%total_income_last_period%><hr noshade size=2></td>
  38. </tr>
  39. <tr>
  40. <th align=left colspan=2>DÉPENSES<br><hr width=300 size=5 align=left noshade></th>
  41. </tr>
  42. <%foreach expense_account%>
  43. <tr>
  44. <td> </td>
  45. <td><%expense_account%></td>
  46. <td align=right><%expenses_this_period%></td>
  47. <td align=right><%expenses_last_period%></td>
  48. </tr>
  49. <%end expense_account%>
  50. <tr>
  51. <td colspan=2> </td>
  52. <td><hr noshade size=1></td>
  53. <td><hr noshade size=1></td>
  54. </tr>
  55. <tr valign=top>
  56. <td> </td>
  57. <th align=left>Total Dépenses</th>
  58. <td align=right><%total_expenses_this_period%><br><hr noshade size=2</td>
  59. <td align=right><%total_expenses_last_period%><br><hr noshade size=2</td>
  60. </tr>
  61. <tr valign=top>
  62. <th align=left colspan=2>BENEFICES / PERTES (en <%currency%> )</th>
  63. <td align=right><%total_this_period%><br><hr noshade size=2></td>
  64. <td align=right><%total_last_period%><br><hr noshade size=2></td>
  65. </tr>
  66. </table>
  67. </body>
  68. </html>