app/views/task/index.php
2025-09-04 22:22:25 +03:00

25 lines
514 B
PHP
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
use yii\helpers\Url;
$this->title = 'Список задач';
$setStateUrl = Url::to(['task/set-state']);
$js = <<<JS
// Обработчик клика по чекбоксу
JS;
$this->registerJs($js);
?>
<h1><?= \yii\helpers\Html::encode($this->title) ?></h1>
<div class="alert alert-warning">
Отредактируйте models/Task.php и views/task/index.php в соответствии с условиями задачи.
</div>
<?= 'Табличные данные' ?>