Skip to content

Instantly share code, notes, and snippets.

@brunokrebs
Created March 2, 2017 14:31
Show Gist options
  • Save brunokrebs/e2e9e5e47cfa5d31f1fbfa8195bc66ad to your computer and use it in GitHub Desktop.
Save brunokrebs/e2e9e5e47cfa5d31f1fbfa8195bc66ad to your computer and use it in GitHub Desktop.
<md-card>
<md-card-title>Task List</md-card-title>
<md-card-subtitle>All your tasks in one place.</md-card-subtitle>
<md-list>
<div class="task-item" *ngFor="let task of tasks; trackBy: $index">
<p><small><strong>{{ task.createdAt | date: 'short' }}</strong></small></p>
<p>{{ task.description }}</p>
<button class="delete" md-button md-raised-button
color="accent" (click)="deleteTask(task)">Delete</button>
</div>
<div class="task-item" *ngIf="tasks?.length == 0">
<p>You have no pending tasks.</p>
</div>
</md-list>
</md-card>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment