Skip to content

Instantly share code, notes, and snippets.

Created January 19, 2018 19:39
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 anonymous/2940442b90abda796eaf84ac2c6fb9dd to your computer and use it in GitHub Desktop.
Save anonymous/2940442b90abda796eaf84ac2c6fb9dd to your computer and use it in GitHub Desktop.
<div>
<button class="add" title="add cluster" (click)="add()">Añadir</button>
<ul *ngFor="let cluster of clusters">
<li>
ID: {{ cluster.id }}, Name: {{ cluster.name }}
<button class="detail" title="detail cluster" (click)="detail(cluster)">Detalle</button>
<button class="update" title="update cluster" (click)="update(cluster)">Actualizar</button>
<button class="delete" title="delete cluster" (click)="delete(cluster)">Eliminar</button>
</li>
</ul>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment