<?php
/************************************/
$st = (int)$Status;
?>
<div class="mymod-overlay imem_mod" style="display: block;">
<div class="mymod-table">
<div class="mymod-cell">
<div class="mymod-modal" style="min-width: 40%;">
<a href="#close" onclick="return mymod();" class="mymod-close"></a>
<h1><?php echo 'Исполнитель №'.$Id; ?></h1>
<?php if(!empty($IId)) { ?>
<div class="panel panel-default">
<div class="panel-body">
<div class="panel panel-default" >
<div class="table-responsive">
<table class="table table-condensed r-table table-bordered">
<tr>
<th style="width: 180px;">Пользователь:</th>
<td><?php echo $Login; ?></td>
</tr>
<tr>
<th style="width: 180px;">Задание:</th>
<td><?php echo $Title; ?></td>
</tr>
<tr>
<th style="width: 180px;">Категория:</th>
<td><?php echo $CatTitle; ?></td>
</tr>
<tr>
<th style="width: 180px;">Выполнить до:</th>
<td><?php echo date('d.m.Y H:i',$EndDate); ?></td>
</tr>
<tr>
<th style="width: 180px;">URL адрес задания:</th>
<td><?php
$_url = (mb_strlen($Url) > 40) ? (mb_substr($Url, 0, 40).' ...') : $Url; ?>
<a href="<?php echo $Url; ?>" target="_blank" title="Перейти на сайт задания"><?php echo $_url; ?></a>
</td>
</tr>
<tr>
<th style="width: 180px;">Оплата:</th>
<td><?php echo number_format ($Amount, 2,","," " ); ?> руб.</td>
</tr>
<tr>
<th style="width: 180px;">Проверка:</th>
<td><?php echo empty($AutoChek) ? 'Ручная' : 'Автопроверка'; ?></td>
</tr>
</table>
</div>
</div>
<div class="form-group">
<label>Описание задания:</label>
<textarea style="background-color: #effee7;" rows="5" maxlength="75" readonly="" class="form-control"><?php echo $Body; ?></textarea>
</div>
<div class="form-group">
<label>Что нужно отправить для подтверждения:</label><br />
<textarea style="background-color: #effee7;" rows="3" maxlength="75" readonly="" class="form-control"><?php echo $Otvet; ?></textarea>
</div>
<div class="panel panel-default" style="text-align: center;"><div class="panel-body">
<?php if(($st === 1)){ ?>
<p><strong style="font-size: 24px;" class="text-success">Задание выполняется!</strong></p>
<?php } elseif(($st === 2)){ ?>
<p><strong style="font-size: 24px;" class="text-success">Отправлено на проверку!</strong></p>
<?php } elseif(($st === 3)){ ?>
<p><strong style="font-size: 24px;" class="text-warning">Задание дорабатывается!</strong></p>
<?php } elseif($st === 4){ ?>
<p><strong style="font-size: 24px;" class="text-success"><i class="fa fa-check"></i> Задание выполнено</strong></p>
<?php } elseif($st === 5){ ?>
<p><strong style="font-size: 24px;" class="text-muted"><i class="fa fa-times"></i> Задание просрочено</strong></p>
<?php } elseif($st === 6){ ?>
<p><strong style="font-size: 24px;" class="text-muted"><i class="fa fa-times"></i> Пользователь отказался от задания</strong></p>
<?php } elseif($st === 7){ ?>
<p><strong style="font-size: 24px;" class="text-danger"><i class="fa fa-warning"></i> Задание заблокировано</strong></p>
<?php } ?>
<?php if (!empty($Otchet)) { ?>
<div class="form-group">
<label>Отчет пользователя:</label>
<textarea rows="3" class="form-control" readonly="readonly"><?php echo $Otchet; ?></textarea>
<?php if(!empty($im)) echo "<p><a href=\"{$im}\" target=\"_blank\">Открыть файл</a></p>"; ?>
</div>
<?php } if(!empty($Dorabotka)) { ?>
<div class="form-group">
<label>Доработка:</label>
<textarea rows="3" class="form-control" readonly="readonly"><?php echo $Dorabotka; ?></textarea>
</div>
<?php } if(!empty($BlokMess)) { ?>
<div class="form-group">
<label>Причина блокировки:</label>
<textarea rows="3" class="form-control" readonly="readonly"><?php echo $BlokMess; ?></textarea>
</div>
<?php } ?>
</div></div>
</div>
</div>
<?php } else { ?>
<div class="panel panel-default">
<div class="panel-body">
<div class="panel panel-default" >
<div class="table-responsive">
<table class="table table-condensed r-table table-bordered">
<tr>
<th style="width: 180px;">Пользователь:</th>
<td><?php echo $Login; ?></strong> (<small><a title="Перейти на страницу пользователя" href="<?php echo X_URL.'/user/edit_'.$UserId; ?>">ИД <?php echo $UserId; ?></a></small>)</td>
</tr>
<tr>
<th style="width: 180px;">Задание:</th>
<td><a href="<?php echo X_URL.'/task?Id='.$TaskId; ?>"><?php echo $Title; ?></a></td>
</tr>
<tr>
<th>Статус:</th>
<td><?php echo $r_m->status[$Status]; ?></td>
</tr>
<tr>
<th colspan="2">
<strong class="text-danger">Прошло более месяца, данные для этого задания стерты</strong>
</th>
</tr>
</table>
</div>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
</div>