Guest User

Untitled

a guest
Jan 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.19 KB | None | 0 0
  1. <!doctype html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <title>Sales Report</title>
  6. <style type="text/css">
  7. @page {
  8. size: A4;
  9. margin: 1cm;
  10. }
  11.  
  12. .table {
  13. width: 100%;
  14. max-width: 100%;
  15. margin-bottom: 5px;
  16. background-color: #fff;
  17. }
  18.  
  19. .table th,
  20. .table td {
  21. padding: 5px;
  22. vertical-align: top;
  23. border-top: 1px solid #000;
  24. text-align: center;
  25. }
  26.  
  27. .table thead th {
  28. vertical-align: bottom;
  29. border-bottom: 2px solid #000;
  30. }
  31.  
  32. .table tbody + tbody {
  33. border-top: 2px solid #000;
  34. }
  35.  
  36. .table .table {
  37. background-color: #fff;
  38. }
  39.  
  40. .list-group {
  41. display: block;
  42. width: 100%;
  43. list-style: none;
  44. margin-top: 15px;
  45. margin-bottom: 15px;
  46. }
  47.  
  48. .list-group p {
  49. width: 100%;
  50. height: 20px;
  51. line-height: 20px;
  52. list-style: none;
  53. font-size: 1.1em;
  54. }
  55.  
  56. </style>
  57. </head>
  58. <body>
  59.  
  60. <div class="container">
  61. <div class="card">
  62. <div class="card-header">
  63. <h3>Sales Report - {{ today | date:"d/m/Y" }}</h3>
  64. </div>
  65.  
  66. <div class="list-group">
  67. <p>Name: {{ request.user.first_name }} {{ request.user.last_name }}</p>
  68. </div>
  69.  
  70. <table class="table">
  71. <thead>
  72. <tr>
  73. <th>Raised</th>
  74. <th>Product</th>
  75. <th>Quantity</th>
  76. <th>Price</th>
  77. <th>Customer</th>
  78. </tr>
  79. </thead>
  80. <tbody>
  81. {% for sale in sales %}
  82. <tr>
  83. <td>{{ sale.created_at | date:"d/m/Y" }}</td>
  84. <td>{{ sale.product.title }}</td>
  85. <td>{{ sale.quantity }}</td>
  86. <td>&pound;{{ sale.price }}</td>
  87. <td>{{ sale.customer.first_name }} {{ sale.customer.last_name }}</td>
  88. </tr>
  89. {% endfor %}
  90. </tbody>
  91. </table>
  92. </div>
  93. </div>
  94.  
  95. </body>
  96. </html>
Add Comment
Please, Sign In to add comment