Skip to content

Commit

Permalink
Corrige l'ajout de groupe qui reliait incorrectement l'organisme (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
niladic authored Apr 14, 2021
1 parent 4fd8c5b commit 1a2bd57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/views/allUsersNew.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ <h4 class="mdl-cell mdl-cell--12-col">Ajouter un groupe</h4> <br>
<select id="organisation" name="organisation">
<option selected style="font-weight: bold;" value="">Organisme non-référencé</option>
@for(organisation <- Organisation.all) {
<option value="@organisation.shortName">@organisation.shortName : @organisation.name</option>
<option value="@organisation.id.id">@organisation.shortName : @organisation.name</option>
}
</select>
</div>
Expand Down

0 comments on commit 1a2bd57

Please sign in to comment.