Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
workspaces
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ssa
workspaces
Merge requests
!330
added button to /workspaces page for creating a std imaging capability request
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
added button to /workspaces page for creating a std imaging capability request
WS-268-button-for-std-imaging-requests
into
main
Overview
10
Commits
3
Pipelines
4
Changes
2
3 unresolved threads
Hide all comments
Merged
Andrew Kapuscinski
requested to merge
WS-268-button-for-std-imaging-requests
into
main
3 years ago
Overview
10
Commits
3
Pipelines
4
Changes
2
3 unresolved threads
Hide all comments
Expand
0
0
Merge request reports
Compare
main
version 4
73aa3c3d
3 years ago
version 3
fd805c86
3 years ago
version 2
e4cbed85
3 years ago
version 1
59237af1
3 years ago
main (base)
and
latest version
latest version
73aa3c3d
3 commits,
3 years ago
version 4
73aa3c3d
3 commits,
3 years ago
version 3
fd805c86
3 commits,
3 years ago
version 2
e4cbed85
2 commits,
3 years ago
version 1
59237af1
1 commit,
3 years ago
2 files
+
100
−
12
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
apps/web/src/app/workspaces/workspaces.component.html
+
67
−
12
Options
<div
class=
"container-fluid py-3"
>
<div
class=
"container border border-dark rounded py-3 mt-2"
>
<h4>
Null Capability
</h4>
<div
id=
"button-container"
class=
"d-flex justify-content-left py-2"
>
<div
class=
"d-flex px-2"
>
<button
type=
"button"
id=
"launchNullCapabilityBtn"
class=
"btn btn-secondary btn-lg"
(click)=
"nullButtonOnClick()"
>
Launch null capability
</button>
</div>
</div>
</div>
<div
class=
"container border border-dark rounded py-3 mt-2"
>
<h4>
Download or Calibration
</h4>
<div
class=
"row p-3"
>
<div
class=
"col-6"
>
<div
class=
"md-form"
>
@@ -39,17 +55,7 @@
</div>
</div>
</div>
<div
id=
"button-container"
class=
"d-flex justify-content-center py-2"
>
<div
class=
"d-flex px-2"
>
<button
type=
"button"
id=
"launchNullCapabilityBtn"
class=
"btn btn-secondary btn-lg"
(click)=
"nullButtonOnClick()"
>
Launch null capability
</button>
</div>
<div
id=
"button-container"
class=
"d-flex justify-content-left py-2"
>
<div
class=
"d-flex px-2"
>
<button
type=
"button"
@@ -72,3 +78,52 @@
</div>
</div>
</div>
<div
class=
"container border rounded border-dark py-3 my-2"
>
<h4>
Standard CMS Imaging
</h4>
<div
class=
"row p-3 mt-4"
>
<div
class=
"col-4"
>
<div
class=
"md-form"
>
<label
for=
"cmsPathInput"
class=
""
>
CMS Path
</label>
<input
type=
"text"
id=
"cmsPathInput"
(change)=
"setCmsPath($event.target.value)"
class=
"form-control"
/>
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"md-form"
>
<label
for=
"sdmId"
class=
""
>
SDM ID
</label>
<input
type=
"text"
id=
"sdmIdInput"
(change)=
"setSdmId($event.target.value)"
class=
"form-control"
/>
</div>
</div>
<div
class=
"col-3"
>
<div
class=
"md-form"
>
<label
for=
"userEmail"
class=
""
>
Email Address
</label>
<input
type=
"text"
id=
"userEmail"
[value]=
"userEmail"
(change)=
"setUserEmail($event.target.value)"
class=
"form-control"
/>
</div>
</div>
</div>
<div
id=
"button-container"
class=
"d-flex justify-content-left py-2"
>
<div
class=
"d-flex px-2"
>
<button
class=
"btn btn-lg btn-warning"
id=
"cms-imaging-submit"
(click)=
"LaunchImagingCapabilityOnClick('std_cms_imaging')"
>
Launch standard CMS imaging
</button>
</div>
</div>
</div>
Loading