Дипломная работа: Автоматизация управления проектами для отдела интернет-разработки в Университете «Синергия»

Внимание! Если размещение файла нарушает Ваши авторские права, то обязательно сообщите нам
119
<a class="dropdown-menu__link" href="">Настройки
проекта</a>
<a class="dropdown-menu__link" href="">Удалить</a>
</div>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<?php
/* @var $this yii\web\View */
/* @var $projects array */
use yii\grid\GridView;
use yii\helpers\Url;
$this->title = 'Проекты';
$this->params['header-button'] = [
'title' => 'Создать проект',
'src' => 'project/create'
];
120
?>
<div class="projects">
<table class="section-table projects__table">
<thead>
<tr class="section-table__row">
<th class="section-table__cell">Имя</th>
<th class="section-table__cell">Ключ</th>
<th class="section-table__cell">Сайт</th>
<th class="section-table__cell">Руководитель</th>
<th class="section-table__cell section-table__cell_sm"></th>
</tr>
</thead>
<tbody>
<? foreach ($projects as $project): ?>
<tr class="section-table__row">
<td class="section-table__cell">
<a href="<?= Url::to(['project/view', 'key' => $project['key']])
?>"><?= $project['name'] ?></a>
</td>
<td class="section-table__cell"><span><?= $project['key']
?></span></td>
<td class="section-table__cell">
121
<a href="https://<?= $project['url'] ?>/" target="_blank"><?=
$project['url'] ?></a>
</td>
<td class="section-table__cell">
<a class="section-table__leader" href="<?= Url::to(['user/view',
'username' => $project['leader']['username']]) ?>">
<img class="section-table__leader-avatar" src="<?=
$project['leader']['photo'] ?>" alt="<?= $project['leader']['name'] ?>">
<?= $project['leader']['name'] ?>
</a>
</td>
<td class="section-table__cell section-table__cell_sm">
<div class="dropdown">
<button class="button button_table-more" data-
toggle="dropdown" data-class-active="button_table-more_open">
<svg class="svg-sprite-icon icon-ellipsis-h section-
table__icon">
<use
xlink:href="/images/sprite/symbol/sprite.svg#ellipsis-h"></use>
</svg>
</button>
<div class="dropdown-menu">
<a class="dropdown-menu__link" href="<?=
Url::to(['project/update', 'key' => $project['key']]) ?>">Настройки проекта</a>
122
<a class="dropdown-menu__link" href="<?=
Url::to(['project/delete', 'key' => $project['key']]) ?>">Удалить</a>
</div>
</div>
</td>
</tr>
<? endforeach; ?>
</tbody>
</table>
</div>
<?php
/* @var $this yii\web\View */
/* @var $users array */
use yii\helpers\Url;
$this->title = 'Пользователи';
$this->params['header-button'] = [
'title' => 'Создать пользователя',
'src' => 'user/create'
];
?>
<div class="projects">
123
<table class="section-table projects__table">
<thead>
<tr class="section-table__row">
<th class="section-table__cell" style="width: 50px">#</th>
<th class="section-table__cell">Логин</th>
<th class="section-table__cell">Пользователь</th>
<th class="section-table__cell section-table__cell_sm"></th>
</tr>
</thead>
<tbody>
<? foreach ($users as $user): ?>
<tr class="section-table__row">
<td class="section-table__cell"><?= $user['id'] ?></td>
<td class="section-table__cell">
<a href="<?= Url::to(['user/view', 'username' =>
$user['username']]) ?>"><?= $user['username'] ?></a>
</td>
<td class="section-table__cell">
<a class="section-table__leader" href="<?= Url::to(['user/view',
'username' => $user['username']]) ?>">
<img class="section-table__leader-avatar" src="<?=
$user['info']['photo'] ?>" alt="<?= $user['info']['name'] ?>" width="24px"
height="24px">
<?= $user['info']['name'] ?>
Источник: https://baza.diplomsite.ru/previewfile/381