Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 8, 2017 17:48
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 NMZivkovic/ae6220ba212b22595bf4137d94514be5 to your computer and use it in GitHub Desktop.
Save NMZivkovic/ae6220ba212b22595bf4137d94514be5 to your computer and use it in GitHub Desktop.
<div class="col-sm-8">
<div class="row">
<div class="col-sm-2">
<label for="Name">Name</label>
</div>
<div class="col-sm-2">
<label for="Blog">Blog</label>
</div>
<div class="col-sm-2">
<label for="Age">Age</label>
</div>
<div class="col-sm-2">
<label for="Location">Location</label>
</div>
</div>
<div class="row" *ngFor="let user of users" (click)="setEditUser(user)">
<div class="col-sm-2">
{{user.name}}
</div>
<div class="col-sm-2">
{{user.blog}}
</div>
<div class="col-sm-2">
{{user.age}}
</div>
<div class="col-sm-2">
{{user.location}}
</div>
<div class="col-sm-2">
<button class="btn btn-default" (click)="deleteUser(user)">Delete</button>
</div>
</div>
<div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment