Skip to content
Snippets Groups Projects
Select Git revision
  • 7293abbad9c1a149cfffd99c9ab5060fe945b773
  • main default protected
  • step-3263
  • feature/plugins-cli
  • feature/vite
  • step-2484-peerreview
  • biest/issue-5051
  • tests/simplify-jsonapi-tests
  • fix/typo-in-1a70031
  • feature/broadcasting
  • database-seeders-and-factories
  • feature/peer-review-2
  • feature-feedback-jsonapi
  • feature/peerreview
  • feature/balloon-plus
  • feature/stock-images-unsplash
  • tic-2588
  • 5.0
  • 5.2
  • biest/unlock-blocks
  • biest-1514
21 results

FeedbackEntry.php

Blame
  • Forked from Stud.IP / Stud.IP
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    index.php 1.40 KiB
    <?php
    /**
     * @var array<int, array> $issues
     */
    ?>
    <table class="default">
        <thead>
            <tr>
                <th><?= _('Issue') ?></th>
                <th><?= _('Autor') ?></th>
                <th><?= _('Bearbeiter') ?></th>
                <th><?= _('Version') ?></th>
    <!--            <th></th>-->
            </tr>
        </thead>
        <tbody>
        <? if (!$issues): ?>
            <tr>
                <td colspan="4" style="text-align: center">
                    <?= _('Keine portierbaren Bugfixes vorhanden 🥳🍺') ?>
                </td>
            </tr>
        <? endif; ?>
        <? foreach ($issues as $issue): ?>
            <tr>
                <td>
                    <a href="<?= htmlReady($issue['web_url']) ?>" target="_blank">
                        #<?= htmlReady($issue['iid']) ?>:
                        <?= htmlReady($issue['title']) ?>
                </td>
                <td><?= htmlReady($issue['author']['username']) ?></td>
                <td><?= htmlReady(implode(',', array_column($issue['assignees'], 'username'))) ?></td>
                <td><?= htmlReady($issue['studip_version']) ?></td>
    <!--            <td>-->
    <!--            --><?// if ($issue['mr']): ?>
    <!--                <a href="--><?//= $controller->diff($issue['mr']) ?><!--" target="_blank">-->
    <!--                    --><?//= Icon::create('file-generic') ?>
    <!--                </a>-->
    <!--            --><?// endif; ?>
    <!--            </td>-->
            </tr>
        <? endforeach; ?>
        </tbody>
    </table>