Merge pull request 'employee-detail-english' (#83) from employee-detail-english into main
All checks were successful
Playwright Tests / test (push) Successful in 2m32s
All checks were successful
Playwright Tests / test (push) Successful in 2m32s
Reviewed-on: #83 Reviewed-by: Jan Gleytenhoover <jan@kjan.email>
This commit is contained in:
commit
84b855b8aa
1 changed files with 7 additions and 7 deletions
|
@ -1,16 +1,16 @@
|
|||
<div class="container">
|
||||
<div class="d-flex flex-col" style="height: 100%;">
|
||||
<div class="p-3" style="width: 100%;">
|
||||
<button class="btn btn-primary" (click)="goToEmployeePage()">Zurück</button>
|
||||
<button class="btn btn-primary" (click)="goToEmployeePage()">Back</button>
|
||||
<div class="row align-items-start pt-3">
|
||||
<div class="col">
|
||||
<h1>{{ employee.firstName }} {{ employee.lastName }} </h1>
|
||||
<p><strong>Straße: </strong>{{ employee.street }}</p>
|
||||
<p><strong>Postleitzahl: </strong>{{ employee.postcode }}</p>
|
||||
<p><strong>Stadt: </strong>{{ employee.city }}</p>
|
||||
<p><strong>Telefonnummer: </strong>{{ employee.phone }}s</p>
|
||||
<button class="btn btn-danger" (click)="deleteEmployee(currentId)">Löschen</button>
|
||||
<button class="ms-3 btn btn-primary" (click)="editEmployee(currentId)">Bearbeiten</button>
|
||||
<p><strong>Street: </strong>{{ employee.street }}</p>
|
||||
<p><strong>Postal Code: </strong>{{ employee.postcode }}</p>
|
||||
<p><strong>City: </strong>{{ employee.city }}</p>
|
||||
<p><strong>Phone number: </strong>{{ employee.phone }}s</p>
|
||||
<button class="btn btn-danger" (click)="deleteEmployee(currentId)">Delete</button>
|
||||
<button class="ms-3 btn btn-primary" (click)="editEmployee(currentId)">Edit</button>
|
||||
|
||||
</div>
|
||||
<div class="col">
|
||||
|
|
Loading…
Add table
Reference in a new issue