update 0
This commit is contained in:
@@ -48,7 +48,7 @@
|
||||
a {
|
||||
font-size: large;
|
||||
font-family: Verdana, Geneva, Tahoma, sans-serif;
|
||||
color: chocolate;
|
||||
color: #7A1E99;
|
||||
padding-right: 50px;
|
||||
}
|
||||
|
||||
@@ -60,31 +60,26 @@
|
||||
form {
|
||||
height: 40px;
|
||||
}
|
||||
|
||||
.inl {display: inline;}
|
||||
.inl-active {
|
||||
display: inline;
|
||||
background-color: #FFD300;
|
||||
}
|
||||
</style>
|
||||
|
||||
<body>
|
||||
<div>
|
||||
<a href="/answer">Входящий вызов принят</a>
|
||||
<a href="/notanswer">Входящий вызов не принят</a>
|
||||
<a href="/truerecall">Перезвонили успешно</a>
|
||||
<a href="/falserecall">Перезвонили безуспешно</a>
|
||||
<div class="inl"><a href="/answer">Входящий вызов принят</a></div>
|
||||
<div class="inl"><a href="/notanswer">Входящий вызов не принят</a></div>
|
||||
<div class="inl"><a href="/truerecall">Перезвонили успешно</a></div>
|
||||
<div class="inl-active"><a href="/falserecall">Перезвонили безуспешно</a></div>
|
||||
</div>
|
||||
<!-- <div>
|
||||
<form name="search" action="/web/call/find/" method="get" class="search">
|
||||
<label class="search_label">Поиск</label>
|
||||
<input class="search_text" type="text" name="client">
|
||||
<input class="search_btn" type="submit" title="Найти">
|
||||
</form>
|
||||
</div> -->
|
||||
<table>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Номер клиента</th>
|
||||
<th>Кол-во попыток</th>
|
||||
<th>Дата и время</th>
|
||||
<th>Продолжительность</th>
|
||||
<th>Оператор</th>
|
||||
<th>Запись</th>
|
||||
<th>Действие</th>
|
||||
</tr>
|
||||
</thead>
|
||||
@@ -99,16 +94,7 @@
|
||||
{% else %}
|
||||
<td>{{ "%s %s %s %s"|format(c.client[0:1], c.client[1:4], c.client[4:7], c.client[7:11]) }}</td>
|
||||
{% endif %}
|
||||
<td>{{ c.count_try }}</td>
|
||||
<td>{{ c.time }}</td>
|
||||
<td>{{ c.answered_duration // 60 }}:{{ "{:02}".format(c.answered_duration % 60) }}</td>
|
||||
<td>{{ c.operator }}</td>
|
||||
<td>
|
||||
{% if c.has_record == true: %}
|
||||
<audio src="{{ c.record_url }}" type="audio/mp3" preload="none" controls>Запись</audio>
|
||||
{% else %}
|
||||
Отсутствует
|
||||
{% endif %}
|
||||
<td>{{ c.dt }}</td>
|
||||
<td style="vertical-align: middle;">
|
||||
<div>
|
||||
<form action="/api/v1/call/set/" method="post" style="border: 0;">
|
||||
|
||||
Reference in New Issue
Block a user