price.html 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. {% extends 'landing/index.html' %}
  2. {% load static %}
  3. {% block container %}
  4. <div class="row" style="min-height: 500px;">
  5. <div class="col-12 mt-5" style="overflow-wrap: break-word;">
  6. <h2>УВАЖАЕМЫЕ ГОСПОДА!</h2>
  7. <hr>
  8. <h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Adipisci mollitia vitae ratione. Culpa, corporis sit aperiam voluptas laudantium, modi libero labore ab blanditiis eligendi porro dignissimos ratione ipsam, possimus eos? </h5>
  9. <h5>Lorem ipsum dolor sit amet, consectetur adipisicing elit. Molestiae quae, sunt quis distinctio animi, illo atque dolores natus non voluptates quisquam a. Officia facilis provident magni? Praesentium?</h5>
  10. <h5>Lorem ipsum dolor sit amet consectetur adipisicing elit. Accusamus, optio!</h5>
  11. <hr>
  12. <h2>&nbsp;</h2>
  13. <h2>СТОИМОСТЬ УСЛУГ</h2>
  14. <table class="table table-striped">
  15. <thead>
  16. <tr>
  17. <th scope="col">#</th>
  18. <th scope="col">Услуга</th>
  19. <th scope="col">Цена</th>
  20. </tr>
  21. </thead>
  22. <tbody>
  23. <tr>
  24. <th scope="row">1</th>
  25. <td>Lorem ipsum dolor sit amet.</td>
  26. <td>Lorem, ipsum.</td>
  27. </tr>
  28. <tr>
  29. <th scope="row">2</th>
  30. <td>Lorem ipsum dolor sit amet.</td>
  31. <td>Lorem, ipsum.</td>
  32. </tr>
  33. <tr>
  34. <th scope="row">3</th>
  35. <td>Lorem ipsum dolor sit amet.</td>
  36. <td>Lorem, ipsum.</td>
  37. </tr>
  38. <tr>
  39. <th scope="row">4</th>
  40. <td>Lorem ipsum dolor sit amet.</td>
  41. <td>Lorem, ipsum.</td>
  42. </tr>
  43. <tr>
  44. <th scope="row">5</th>
  45. <td>Lorem ipsum dolor sit amet.</td>
  46. <td>Lorem, ipsum.</td>
  47. </tr>
  48. <tr>
  49. <th scope="row">6</th>
  50. <td>Lorem ipsum dolor sit amet.</td>
  51. <td>Lorem, ipsum.</td>
  52. </tr>
  53. </tbody>
  54. </table>
  55. <h2>&nbsp;</h2>
  56. <h2>ДОПОЛНИТЕЛЬНЫЕ УСЛУГИ</h2>
  57. <table class="table table-striped">
  58. <thead>
  59. <tr>
  60. <th scope="col">#</th>
  61. <th scope="col">Услуга</th>
  62. <th scope="col">Цена</th>
  63. </tr>
  64. </thead>
  65. <tbody>
  66. <tr>
  67. <th scope="row">1</th>
  68. <td>Lorem ipsum dolor sit amet.</td>
  69. <td>Lorem, ipsum.</td>
  70. </tr>
  71. <tr>
  72. <th scope="row">2</th>
  73. <td>Lorem ipsum dolor sit amet.</td>
  74. <td>Lorem, ipsum.</td>
  75. </tr>
  76. <tr>
  77. <th scope="row">3</th>
  78. <td>Lorem ipsum dolor sit amet.</td>
  79. <td>Lorem, ipsum.</td>
  80. </tr>
  81. <tr>
  82. <th scope="row">4</th>
  83. <td>Lorem ipsum dolor sit amet.</td>
  84. <td>Lorem, ipsum.</td>
  85. </tr>
  86. <tr>
  87. <th scope="row">5</th>
  88. <td>Lorem ipsum dolor sit amet.</td>
  89. <td>Lorem, ipsum.</td>
  90. </tr>
  91. <tr>
  92. <th scope="row">6</th>
  93. <td>Lorem ipsum dolor sit amet.</td>
  94. <td>Lorem, ipsum.</td>
  95. </tr>
  96. </tbody>
  97. </table>
  98. {% include 'landing/ser_btn.html' %}
  99. </div>
  100. </div>
  101. {% endblock %}