UI: Qualifikation Detail seite
This commit is contained in:
parent
98a82eacc8
commit
e8e410206e
4 changed files with 71 additions and 0 deletions
|
@ -0,0 +1,13 @@
|
|||
.thin-separator {
|
||||
border: none;
|
||||
border-top: 2px solid #aea0a0;
|
||||
margin: 20px 0;
|
||||
width: 20%;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.employee-list-title {
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
|
|
@ -0,0 +1,20 @@
|
|||
<div class="d-flex flex-col" style="height: 100%;">
|
||||
<app-navigation-bar></app-navigation-bar>
|
||||
<div class="p-3" style="width: 100%;">
|
||||
<a href="" class="btn btn-primary">Zurück</a>
|
||||
<div class="row align-items-start pt-3">
|
||||
<div class="col">
|
||||
<h1>Name of qualification</h1>
|
||||
<h4 class="employee-list-title">List of employees possessing the qualification</h4>
|
||||
<p>Max Mustermann</p>
|
||||
<hr class="thin-separator">
|
||||
<p>Mehdi Boudjoudi</p>
|
||||
<hr class="thin-separator">
|
||||
<p>Random Random</p>
|
||||
<hr class="thin-separator">
|
||||
<button class="btn btn-danger">Löschen</button>
|
||||
<button class="ms-3 btn btn-primary">Bearbeiten</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
|
@ -0,0 +1,23 @@
|
|||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { QualifikatonDetailComponent } from './qualifikaton-detail.component';
|
||||
|
||||
describe('QualifikatonDetailComponent', () => {
|
||||
let component: QualifikatonDetailComponent;
|
||||
let fixture: ComponentFixture<QualifikatonDetailComponent>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [QualifikatonDetailComponent]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(QualifikatonDetailComponent);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
|
@ -0,0 +1,15 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {NavigationBarComponent} from "../navigation-bar/navigation-bar.component";
|
||||
|
||||
@Component({
|
||||
selector: 'app-qualifikaton-detail',
|
||||
standalone: true,
|
||||
imports: [
|
||||
NavigationBarComponent
|
||||
],
|
||||
templateUrl: './qualifikaton-detail.component.html',
|
||||
styleUrl: './qualifikaton-detail.component.css'
|
||||
})
|
||||
export class QualifikatonDetailComponent {
|
||||
|
||||
}
|
Loading…
Add table
Reference in a new issue