-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add list of no application candidates
- Loading branch information
Showing
3 changed files
with
107 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
<?php | ||
|
||
use yii\bootstrap\Html; | ||
use yii\grid\GridView; | ||
use yii\widgets\ListView; | ||
|
||
$this->title = 'Εκπαιδευτικοί χωρίς αίτηση και χωρίς δήλωση άρνησης'; | ||
$this->params['breadcrumbs'][] = ['label' => 'Διαχειριστικές λειτουργίες', 'url' => ['index']]; | ||
$this->params['breadcrumbs'][] = $this->title; | ||
?> | ||
<h3 style="text-align: center;"><?= Html::encode($this->title) ?></h3> | ||
<table class="table table-bordered table-striped"> | ||
<thead> | ||
<tr> | ||
<th style="width: 5%">#</th> | ||
<th style="width: 20%">Επώνυμο</th> | ||
<th style="width: 20%">Όνομα</th> | ||
<th style="width: 15%">Πατρώνυμο</th> | ||
<th style="width: 15%">Α.Φ.Μ.</th> | ||
<th style="width: 15%">Α.Δ.Τ.</th> | ||
<th style="width: 10%">Ειδικότητα</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<?= | ||
ListView::widget([ | ||
'dataProvider' => $dataProvider, | ||
'itemView' => function ($model, $key, $index, $widget) { | ||
$serial = $index + 1; | ||
return <<< EOUTMPL | ||
<tr> | ||
<td>{$serial}</td> | ||
<td>{$model->lastname}</td> | ||
<td>{$model->firstname}</td> | ||
<td>{$model->fathername}</td> | ||
<td>{$model->vat}</td> | ||
<td>{$model->identity}</td> | ||
<td>{$model->specialty}</td> | ||
</tr> | ||
EOUTMPL; | ||
}, | ||
'summary' => '<h3>Συνολικά: {totalCount}</h3>' | ||
]); | ||
|
||
?> | ||
</tbody> | ||
</table> | ||
<p class="text-muted"><small>Παραγωγή αρχείου <?php echo date('c'); ?></small></p> |