You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.6 KiB
65 lines
1.6 KiB
{% extends 'partials/base.html' %}
|
|
|
|
{% load staticfiles %}
|
|
{% load thumbnail %}
|
|
{% block content %}
|
|
|
|
|
|
{% include 'partials/header.html' %}
|
|
<div class="container mainScore">
|
|
<div class="row">
|
|
<div class="col-lg-12">
|
|
<p class="titleScore">Ваш счет</p>
|
|
</div>
|
|
<div class="col-lg-12">
|
|
<div class="scoreButtons disTab">
|
|
<div class="triangle1"></div>
|
|
<p>35 000 <i class="fa fa-rub"></i></p>
|
|
<div class="col-lg-6">
|
|
<a href="javascript:void(0)" class="linkS linkS1">пополнить</a>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<a href="javascript:void(0)" class="linkS linkS2">вывести средства</a>
|
|
</div>
|
|
<table>
|
|
<tr>
|
|
<th>Дата</th>
|
|
<th>Описание</th>
|
|
<th>Поступление/Списание</th>
|
|
<th>Баланс</th>
|
|
</tr>
|
|
<tr>
|
|
<td>23.01.2016</td>
|
|
<td>
|
|
Оплата этапа 1 по заказу <b>«Сложный долгий заказ»</b>
|
|
</td>
|
|
<td>
|
|
+35 000
|
|
<i class="fa fa-rub"></i>
|
|
</td>
|
|
<td>
|
|
53 000
|
|
<i class="fa fa-rub"></i>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td>23.01.2016</td>
|
|
<td>
|
|
Оплата этапа 1 по заказу <b>«Сложный долгий заказ»</b>
|
|
</td>
|
|
<td>
|
|
+35 000
|
|
<i class="fa fa-rub"></i>
|
|
</td>
|
|
<td>
|
|
53 000
|
|
<i class="fa fa-rub"></i>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
{% include 'partials/footer.html' %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|
|
|