mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 05:09:28 +00:00
34 lines
752 B
PHP
34 lines
752 B
PHP
|
|
<div class="row alert-info" id="unruly" style="display: none;">
|
|
<h3 class="header col-lg-12">
|
|
<?php echo $this->p->t('infocenter', 'unrulyPersonFound') . ':'; ?>
|
|
</h3>
|
|
<div class="text-left col-lg-12" id="unrulylist">
|
|
<?php
|
|
if($unruly) {
|
|
foreach ($unruly as $unruled)
|
|
{
|
|
echo '<p>Person ID: ' . $unruled->person_id . '<p/>';
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row alert-warning" id="duplicate" style="display: none;">
|
|
|
|
<h3 class="header col-lg-12">
|
|
<?php echo $this->p->t('global', 'bewerberVorhanden') . ':'; ?>
|
|
</h3>
|
|
<div class="text-left col-lg-12" id="duplicatelist">
|
|
<?php
|
|
if($duplicate) {
|
|
foreach ($duplicate as $dupe)
|
|
{
|
|
echo '<p>Person ID: ' . $dupe->person_id . '<p/>';
|
|
}
|
|
}
|
|
?>
|
|
</div>
|
|
|
|
</div>
|