-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
212 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
26
application/views/scripts/dossier/formrecupeffectifsdegagements.phtml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php if ($this->nbEtab != 1): ?> | ||
Pour pouvoir utiliser cette fonctionnalité, le dossier ne doit concerner qu'un seul établissement | ||
<?php else: ?> | ||
<form name='selectionDossier' id='selectionDossier' > | ||
<input type='hidden' name='idDossier' id='idDossier' value='<?= $this->idDossier; ?>' /> | ||
Sélectionnez le dossier pour lequel vous souhaitez reprendre les effectifs et dégagements | ||
|
||
<?php if (count($this->etudes) === 0) : ?> | ||
<div class='well well-large text-center'> | ||
<p class='lead'>Il n'y a pas de dossier.</p> | ||
<p> | ||
<a href='<?= $this->url(array('controller' => 'dossier', 'action' => 'add', 'id_etablissement' => $this->etablissement['general']['ID_ETABLISSEMENT']), null, true) ?>' class='btn btn-large'>Ajouter un dossier</a> | ||
</p> | ||
</div> | ||
<?php else: ?> | ||
<div id="content_etudes_ets"> | ||
<?php if (count($this->etudes) > 0): ?> | ||
<h4>Études</h4> | ||
<ul class='recherche_liste'> | ||
<?= $this->partialLoop('dossier/results/dossier.phtml', $this->etudes) ?> | ||
</ul> | ||
<?php endif ?> | ||
</div> | ||
<?php endif ?> | ||
</form> | ||
<?php endif ?> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters