Created
November 17, 2025 18:01
-
-
Save PixelHeadsLtd/06e837c641aee42d8e1925acecf43e7b to your computer and use it in GitHub Desktop.
Migrated gist (migrated)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <table class="boxed"> | |
| <thead> | |
| <th>Status</th> | |
| <th>Approver</th> | |
| <th>Created date</th> | |
| <th>Modified date</th> | |
| </thead> | |
| <tbody> | |
| <tr *ngFor="let approval of approvals"> | |
| <td><span class="alert-shield" ngClass="{{ approval.statusClass }}">{{ approval.status }}</span> | |
| </td> | |
| <td>{{ approval.approver }}</td> | |
| <td>{{ approval.created }}</td> | |
| <td>{{ approval.modified }}</td> | |
| </tr> | |
| </tbody> | |
| </table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment