<div *ngIf="jobs.lenght == 0">
  You don't appear to have any jobs
</div>
<div *ngFor="let job of jobs">
  <app-job [jobdata]=job></app-job>
</div>