Skip to content

Instantly share code, notes, and snippets.

@bobbyg603
Last active May 9, 2022 00:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bobbyg603/267c6a80de50550c5f7609405e290d13 to your computer and use it in GitHub Desktop.
Save bobbyg603/267c6a80de50550c5f7609405e290d13 to your computer and use it in GitHub Desktop.
File Uploads with Angular and Express
<section class="d-flex justify-content-between">
<h1>Files</h1>
</section>
<hr class="my-2">
<section>
<table class="table">
<tbody>
<tr *ngFor="let file of files">
<td>
<a [href]="file.url">{{file.name}}</a>
</td>
<td>
{{ file.uploaded | date:'long' }}
</td>
<td>
{{ file.size / (1024 * 10 * 10 * 10) | number:'.2-2' }} MB
</td>
</tr>
</tbody>
</table>
</section>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment