portal.mkgtu.ru/common/modules/student/components/grade/views/grade.php

23 lines
586 B
PHP
Executable File
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 common\modules\student\components\grade\GradeWidget;
$this->title = Yii::$app->name;
?>
<div class="site-index">
<div class="body-content">
<?php
$alert = \Yii::$app->session->getFlash('ErrorSoapResponse');
if (strlen((string)$alert) > 1) {
echo '<div class="alert alert-danger" role="alert">';
echo $alert;
echo '</div>';
} ?>
</div>
<div class="body-content">
<h3>Сведения об успеваемости</h3>
<?php echo GradeWidget::widget(); ?>
</div>
</div>