Skip to content
Snippets Groups Projects
Commit cf84e396 authored by Moritz Strohm's avatar Moritz Strohm
Browse files

removed file not deleted during rebase

parent c1895f21
No related branches found
No related tags found
No related merge requests found
<? if ($admin || $evaluations): ?>
<article class="studip">
<header>
<h1>
<?= Icon::create('vote', 'info')->asImg(); ?>
<?= _('Evaluationen') ?>
</h1>
<nav>
<? if ($admin): ?>
<a href="<?= URLHelper::getLink('admin_evaluation.php', ['rangeID' => $range_id]) ?>"
title="<?= _('Verwalten') ?>">
<?= Icon::create('edit', 'clickable')->asImg(); ?>
</a>
<? endif; ?>
</nav>
</header>
<? if (!$evaluations): ?>
<section>
<?= _('Es ist keine Evaluation vorhanden. Nutzen Sie die Aktion „Verwalten“ um eine neue Evaluation zu erstellen.') ?>
</section>
<? else: ?>
<? foreach ($evaluations as $evaluation): ?>
<?= $this->render_partial('evaluation/_evaluation.php', ['evaluation' => $evaluation]); ?>
<? endforeach; ?>
<? endif; ?>
</article>
<? endif; ?>
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment