feat: oleg gone away
This commit is contained in:
@@ -35,10 +35,12 @@
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
/*flex-direction: column;*/
|
||||
/*text-align: right;*/
|
||||
}
|
||||
|
||||
.footer-block {
|
||||
justify-content: space-between;
|
||||
|
||||
}
|
||||
|
||||
@@ -105,6 +107,22 @@
|
||||
border-top: 2px solid black;
|
||||
}
|
||||
|
||||
.footer-right {
|
||||
text-align: right;
|
||||
}
|
||||
|
||||
.footer-line-right {
|
||||
align-self: flex-end;
|
||||
font-size: medium;
|
||||
font-weight: bolder;
|
||||
margin: 2px 0;
|
||||
}
|
||||
|
||||
.footer-words {
|
||||
flex-direction: column-reverse;
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
@@ -146,9 +164,9 @@
|
||||
{% for service in services %}
|
||||
<tr>
|
||||
<td>{{ service.name }}</td>
|
||||
<td>{{ service.amount }}</td>
|
||||
<td>{{ service.price }}</td>
|
||||
<td>{{ service.price * service.amount }}</td>
|
||||
<td>{{ service.amount }} шт.</td>
|
||||
<td>{{ service.price }} ₽</td>
|
||||
<td>{{ '{:,}'.format(service.price * service.amount).replace(',', ' ') }} ₽</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
@@ -160,10 +178,14 @@
|
||||
<div class="footer-line">+79777740525 Игорь С. (Т-Банк)</div>
|
||||
</div>
|
||||
<div class="footer-block">
|
||||
<div class="footer-line">Итого к оплате: {{ deal_price }} Р</div>
|
||||
<div class="footer-line">{{ deal_price_words }}</div>
|
||||
<div class="footer-line-right">Итого к оплате: {{ deal_price }} ₽</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="footer-words">
|
||||
<div class="footer-line-right">{{ deal_price_words }}</div>
|
||||
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
|
||||
Reference in New Issue
Block a user