summaryrefslogtreecommitdiff
path: root/app/Templates/project_users.php
blob: dca3524fb29b29564629082f680db1687032d298 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div class="page-header">
    <h2><?= t('List of authorized users') ?></h2>
</div>

<?php if (empty($users['allowed'])): ?>
    <div class="alert alert-info"><?= t('Everybody have access to this project.') ?></div>
<?php else: ?>
<div class="listing">
    <p><?= t('Only those users have access to this project:') ?></p>
    <ul>
    <?php foreach ($users['allowed'] as $user_id => $username): ?>
        <li>
            <strong><?= Helper\escape($username) ?></strong>
            (<a href="?controller=project&amp;action=revoke&amp;project_id=<?= $project['id'] ?>&amp;user_id=<?= $user_id.Helper\param_csrf() ?>"><?= t('revoke') ?></a>)
        </li>
    <?php endforeach ?>
    </ul>
    <p><?= t('Don\'t forget that administrators have access to everything.') ?></p>
</div>
<?php endif ?>

<?php if (! empty($users['not_allowed'])): ?>
    <form method="post" action="?controller=project&amp;action=allow&amp;project_id=<?= $project['id'] ?>" autocomplete="off">

        <?= Helper\form_csrf() ?>

        <?= Helper\form_hidden('project_id', array('project_id' => $project['id'])) ?>

        <?= Helper\form_label(t('User'), 'user_id') ?>
        <?= Helper\form_select('user_id', $users['not_allowed']) ?><br/>

        <div class="form-actions">
            <input type="submit" value="<?= t('Allow this user') ?>" class="btn btn-blue"/>
        </div>
    </form>
<?php endif ?>