This repository has been archived by the owner on Jun 26, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from tfenster/alpha7
alpha7
- Loading branch information
Showing
13 changed files
with
266 additions
and
11 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
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
17 changes: 17 additions & 0 deletions
17
gui/ClientApp/src/app/fetch-data/dialogs/adv-entry.dialog.css
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,17 @@ | ||
.flexcolumn { | ||
display: flex; | ||
flex-direction: column; | ||
} | ||
|
||
p { | ||
margin-bottom: 0; | ||
} | ||
|
||
.mat-form-field { | ||
padding-top: 1em; | ||
} | ||
|
||
.mat-radio-group { | ||
flex-direction: column; | ||
display: flex; | ||
} |
50 changes: 50 additions & 0 deletions
50
gui/ClientApp/src/app/fetch-data/dialogs/adv-entry.dialog.html
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,50 @@ | ||
<h1 mat-dialog-title>Create a new container</h1> | ||
<div mat-dialog-content> | ||
<p> | ||
What config do you want to use for the container? | ||
</p> | ||
<div class="flexcolumn"> | ||
<mat-checkbox cdkFocusInitial | ||
[(ngModel)]="data.adv.testToolkit">Include test toolkit</mat-checkbox> | ||
</div> | ||
<div class="flexcolumn">Which license to use? | ||
<mat-radio-group class="example-radio-group" | ||
[(ngModel)]="data.adv.license" | ||
required cdkFocusInitial> | ||
<mat-radio-button | ||
class="image-radio-button" | ||
*ngFor="let license of data.licenses" | ||
[value]="license"> | ||
{{ license }} | ||
</mat-radio-button> | ||
</mat-radio-group> | ||
</div> | ||
<div class="flexcolumn">Which network to use? | ||
<mat-radio-group class="example-radio-group" | ||
[(ngModel)]="data.adv.network" | ||
required cdkFocusInitial> | ||
<mat-radio-button | ||
class="image-radio-button" | ||
*ngFor="let network of data.networks" | ||
[value]="network.Name"> | ||
{{ network.Name }} ({{ network.Id}}) | ||
</mat-radio-button> | ||
</mat-radio-group> | ||
</div> | ||
<div class="flexcolumn">Which credentialspec to use? | ||
<mat-radio-group class="example-radio-group" | ||
[(ngModel)]="data.adv.credspec" | ||
required cdkFocusInitial> | ||
<mat-radio-button | ||
class="image-radio-button" | ||
*ngFor="let credspec of data.credspecs" | ||
[value]="credspec"> | ||
{{ credspec }} | ||
</mat-radio-button> | ||
</mat-radio-group> | ||
</div> | ||
</div> | ||
<div mat-dialog-actions> | ||
<button mat-button (click)="onCancelClick()">Cancel</button> | ||
<button mat-button [mat-dialog-close]="data.adv">Create</button> | ||
</div> |
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
Oops, something went wrong.