Correction de certains mots
This commit is contained in:
parent
cd584f8bb6
commit
c64ef0646e
|
@ -61,7 +61,7 @@
|
|||
|
||||
<hr/>
|
||||
|
||||
<h2>Autorisations</h2>
|
||||
<h2>Documents</h2>
|
||||
|
||||
<?php printDocuments($documents) ?>
|
||||
|
||||
|
@ -71,7 +71,7 @@
|
|||
|
||||
<?php if ($team->isSelectedForFinal()) { ?>
|
||||
<hr/>
|
||||
<h2>Autorisations pour la finale</h2>
|
||||
<h2>Documents pour la finale</h2>
|
||||
<?php printDocuments($documents_final) ?>
|
||||
<form method="POST">
|
||||
<input class="btn btn-secondary btn-lg btn-block" type="submit" name="download_zip_final" value="Télécharger l'archive"/>
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
|
|
@ -203,7 +203,7 @@ if (!$has_error && (isset($my_account) || isset($new_password))) {
|
|||
?>
|
||||
<hr/>
|
||||
<div class="mt-4 mb-4">
|
||||
<h1 class="display-5">Mes autorisations</h1>
|
||||
<h1 class="display-5">Mes documents</h1>
|
||||
</div>
|
||||
<?php if ($not_validated) { ?>
|
||||
<div class="alert alert-warning">
|
||||
|
|
|
@ -127,13 +127,13 @@ require_once "header.php";
|
|||
|
||||
<hr />
|
||||
|
||||
<h2>Autorisations de l'équipe</h2>
|
||||
<h2>Documents de l'équipe</h2>
|
||||
<?php printDocuments($documents);
|
||||
|
||||
if ($team->isSelectedForFinal()) { ?>
|
||||
<hr />
|
||||
|
||||
<h2>Autorisations de l'équipe pour la finale</h2>
|
||||
<h2>Documents de l'équipe pour la finale</h2>
|
||||
|
||||
<?php printDocuments($documents_final); ?>
|
||||
<?php } ?>
|
||||
|
|
Loading…
Reference in New Issue