Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
R
Requirement Formalization Tool
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Thodoris Nestoridis
Requirement Formalization Tool
Commits
1200b4d1
Commit
1200b4d1
authored
Mar 12, 2021
by
Thodoris Nestoridis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ch to groupboi page
parent
12732872
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
63 additions
and
5 deletions
+63
-5
app.component.html
reqtool/ReqmanAngular11/src/app/app.component.html
+14
-1
app.component.scss
reqtool/ReqmanAngular11/src/app/app.component.scss
+8
-1
groupboil.component.html
...r11/src/app/components/groupboil/groupboil.component.html
+33
-2
groupboil.component.scss
...r11/src/app/components/groupboil/groupboil.component.scss
+7
-1
groupboil.component.ts
...lar11/src/app/components/groupboil/groupboil.component.ts
+1
-0
No files found.
reqtool/ReqmanAngular11/src/app/app.component.html
View file @
1200b4d1
...
@@ -13,8 +13,21 @@
...
@@ -13,8 +13,21 @@
<main>
<main>
<router-outlet></router-outlet>
<router-outlet></router-outlet>
</main>
</main>
<!-- Footer -->
<footer
class=
"footer page-footer font-small "
>
<!-- Copyright -->
<div
class=
"footer-copyright text-center py-3"
>
© 2021 Copyright:
<a
href=
"https://depend.csd.auth.gr/"
>
Depend Research Team
</a>
</div>
<!-- Copyright -->
</footer>
<!-- Footer -->
</mat-sidenav-content>
</mat-sidenav-content>
</mat-sidenav-content>
</mat-sidenav-content>
</mat-sidenav-container>
</mat-sidenav-container>
</div>
</div>
<notifier-container></notifier-container>
<notifier-container></notifier-container>
\ No newline at end of file
reqtool/ReqmanAngular11/src/app/app.component.scss
View file @
1200b4d1
...
@@ -6,4 +6,11 @@ mat-sidenav {
...
@@ -6,4 +6,11 @@ mat-sidenav {
}
}
main
{
main
{
padding
:
10px
;
padding
:
10px
;
}
}
\ No newline at end of file
.footer
{
position
:
auto
;
left
:
0
;
bottom
:
0
;
width
:
100%
;
text-align
:
center
;
}
\ No newline at end of file
reqtool/ReqmanAngular11/src/app/components/groupboil/groupboil.component.html
View file @
1200b4d1
<div>
<nav
aria-label=
"breadcrumb"
>
<input
class=
"btn btn-success"
type=
"button"
value=
"Add New project"
routerLink=
"add-groupboil"
/>
<ol
class=
"breadcrumb"
>
<li
class=
"breadcrumb-item"
aria-current=
"page"
>
Projects
</li>
</ol>
</nav>
<div
class=
"list row"
>
<div
class=
"col-md-8"
>
<div
class=
"input-group mb-3"
>
<input
type=
"text"
class=
"form-control"
placeholder=
"Search"
[(
ngModel
)]="
title
"
/>
<!-- (keyup.enter)="SearchTitle()"-->
<!-- (click)="SearchTitle()" -->
<div
class=
"input-group-append"
>
<button
class=
"btn btn-primary"
type=
"button"
>
Search
</button>
</div>
</div>
<div
fxFlex
fxLayout
fxHide
.
xs
fxLayoutAlign=
"end"
>
<ul
fxLayout
fxLayoutGap=
"15px"
class=
"navigation-items"
>
<div>
<input
class=
"btn btn-success"
type=
"button"
value=
"Add New project"
routerLink=
"add-groupboil"
/>
</div>
</ul>
</div>
</div>
</div>
</div>
<div
*
ngFor=
"let gb of grouboilerplates"
>
<div
*
ngFor=
"let gb of grouboilerplates"
>
<mat-card
class=
"example-card"
>
<mat-card
class=
"example-card"
>
...
...
reqtool/ReqmanAngular11/src/app/components/groupboil/groupboil.component.scss
View file @
1200b4d1
.example-card
{
.example-card
{
max-width
:
400px
;
max-width
:
auto
;
}
}
.example-header-image
{
.example-header-image
{
background-size
:
cover
;
background-size
:
cover
;
}
.list
{
text-align
:
left
;
max-width
:
750px
;
margin
:
auto
;
}
}
\ No newline at end of file
reqtool/ReqmanAngular11/src/app/components/groupboil/groupboil.component.ts
View file @
1200b4d1
...
@@ -9,6 +9,7 @@ import { BoilerplateService } from 'src/app/services/boilerplate.service';
...
@@ -9,6 +9,7 @@ import { BoilerplateService } from 'src/app/services/boilerplate.service';
})
})
export
class
GroupboilComponent
implements
OnInit
{
export
class
GroupboilComponent
implements
OnInit
{
grouboilerplates
?:
GroupBoilerplate
[];
grouboilerplates
?:
GroupBoilerplate
[];
title
=
''
;
constructor
(
private
boilerplateService
:
BoilerplateService
)
{
}
constructor
(
private
boilerplateService
:
BoilerplateService
)
{
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment