diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-10 12:19:34 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-08-16 14:27:28 +0200 |
commit | dd6f08b10b1597f44e3dc25509ac9a45336b0914 (patch) | |
tree | 3dcb835306bc3adbae7c27d94fc8a51de8d6f09a /webapp/src/app/config/config.component.html | |
parent | 0262f5bef6ff67e77b844a04733c57740fba9f00 (diff) |
Add folder interface and support native pathmap folder type.
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
Diffstat (limited to 'webapp/src/app/config/config.component.html')
-rw-r--r-- | webapp/src/app/config/config.component.html | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/webapp/src/app/config/config.component.html b/webapp/src/app/config/config.component.html index d9229d5..5211c2d 100644 --- a/webapp/src/app/config/config.component.html +++ b/webapp/src/app/config/config.component.html @@ -71,13 +71,24 @@ </div> <div class="col-xs-6"> - <label>Folder Path </label> - <input type="text" style="width:70%;" formControlName="path" placeholder="myProject"> + <label>Client/Local Path </label> + <input type="text" style="width:70%;" formControlName="pathCli" placeholder="myProject"> + </div> + <div class="col-xs-6"> + <label>Server Path </label> + <input type="text" style="width:70%;" formControlName="pathSvr" placeholder="myProject"> </div> <div class="col-xs-4"> <label>Label </label> <input type="text" formControlName="label" (keyup)="onKeyLabel($event)"> </div> + <div class="col-xs-4"> + <label>Type </label> + <select class="form-control" formControlName="type"> + <option *ngFor="let t of projectTypes" [value]="t.value">{{t.display}} + </option> + </select> + </div> </div> </form> @@ -91,4 +102,4 @@ <!-- only for debug --> <div *ngIf="false" class="row"> {{config$ | async | json}} -</div>
\ No newline at end of file +</div> |