working #24

Merged
derek merged 4 commits from working into main 2025-08-07 17:22:07 -07:00
Showing only changes of commit 349cada9e6 - Show all commits
@@ -43,7 +43,15 @@
</div> </div>
<div class="half-frame"> <div class="half-frame">
<h2>Employees</h2> <h2>Employees</h2>
@for (listing of CompEmployees; track listing.id) {
<div class="job-tile">
<div class="center-text">
<h1>{{ listing.accountName }}</h1>
</div>
<button [routerLink]="['/']" [queryParams]="{ JobID: listing.id }" >REMOVE</button>
<button (click)="RemoveJobListing(listing.id!)">DELETE LISTING</button>
</div>
}
</div> </div>
</div> </div>
</div> </div>