In a component I have a source code similar to this:
<ng-template let-col let-row="rowData" let-rowIndex="rowIndex" pTemplate="body">
<span *ngIf='row.job_id'>
{{row.job_id}}
</span>
<span *ngIf='!row.job_id'>
Job ID Not available
</span>
</ng-template>
I want to use else condition with it inside a single ng-template. how can I achieve it?