Skip to content

Commit

Permalink
Merge pull request #50 from PnX-SI/amine
Browse files Browse the repository at this point in the history
update photo form
  • Loading branch information
HamoudaAmine authored Jan 25, 2019
2 parents 37e9ff6 + 5a74c26 commit c2bc89e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions front-backOffice/src/app/add-photo/add-photo.component.html
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,20 @@ <h5 class="modal-title">{{title}} </h5>
</label>
</div>
<div class="row form-item">
<div class="col ">
<label class="label" for="auteur">Auteur</label>
<select InputFeedBack id="auteur" formControlName="id_role" class="form-control">
<option class="select-placeholder" value="">---</option>
<option *ngFor="let author of authors" [ngValue]="author.id_role">{{author.nom_role}}</option>
</select>
</div>
<div class="col">
<label class="label" for="licence">FONDS</label>
<select InputFeedBack id="licence" formControlName="id_licence_photo" class="form-control">
<option class="select-placeholder" value="">---</option>
<option *ngFor="let licence of licences" [ngValue]="licence.id_licence_photo">{{licence.name_licence_photo}}</option>
</select>
</div>
<div class="col ">
<label class="label" for="auteur">Auteur</label>
<select InputFeedBack id="auteur" formControlName="id_role" class="form-control">
<option class="select-placeholder" value="">---</option>
<option *ngFor="let author of authors" [ngValue]="author.id_role">{{author.nom_role}}</option>
</select>
</div>
</div>
<div class="row form-item">
<div class="col ">
Expand Down

0 comments on commit c2bc89e

Please sign in to comment.