1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-06-25 17:37:25 +02:00

Correction de certains mots

This commit is contained in:
Yohann D'ANELLO
2020-01-22 22:06:53 +01:00
parent cd584f8bb6
commit c64ef0646e
4 changed files with 8 additions and 8 deletions

View File

@ -60,7 +60,7 @@ if (!$has_error) {
<?php } elseif ($team->getValidationStatus() == ValidationStatus::NOT_READY) { ?>
<form method="POST">
<input type="hidden" name="kick"/>
<a href="#" onclick="this.parentNode.submit()">Virer de l'équipe</a>
<a href="#" onclick="this.parentNode.submit()">Exclure de l'équipe</a>
</form>
<?php } ?>
</div>
@ -166,13 +166,13 @@ if ($user->getRole() == Role::ADMIN || $user->getRole() == Role::ORGANIZER) {
}
elseif (($user->getRole() == Role::PARTICIPANT || $user->getRole() == Role::ENCADRANT) && $user->getTeamId() !== NULL) { ?>
<h2>Autorisations</h2>
<h2>Documents</h2>
<?php
printDocuments($documents);
if ($team->isSelectedForFinal()) { ?>
<hr />
<h2>Autorisations pour la finale</h2>
<h2>Documents pour la finale</h2>
<?php
printDocuments($documents_final);
}