Created
March 2, 2017 14:31
-
-
Save brunokrebs/e2e9e5e47cfa5d31f1fbfa8195bc66ad to your computer and use it in GitHub Desktop.
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
<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