123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- <div>
- <h2 id="page-heading">
- <span jhiTranslate="zipConnectApp.cohort.home.title">Cohorts</span>
- <button id="jh-create-entity" class="btn btn-primary float-right jh-create-entity create-cohort" [routerLink]="['/cohort/new']">
- <fa-icon [icon]="'plus'"></fa-icon>
- <span jhiTranslate="zipConnectApp.cohort.home.createLabel">
- Create new Cohort
- </span>
- </button>
- </h2>
- <jhi-alert></jhi-alert>
- <br/>
- <div class="table-responsive" *ngIf="cohorts">
- <table class="table table-striped">
- <thead>
- <tr>
- <th><span jhiTranslate="global.field.id">ID</span></th>
- <th><span jhiTranslate="zipConnectApp.cohort.cohortId">Cohort Id</span></th>
- <th><span jhiTranslate="zipConnectApp.cohort.gradDate">Grad Date</span></th>
- <th></th>
- </tr>
- </thead>
- <tbody>
- <tr *ngFor="let cohort of cohorts ;trackBy: trackId">
- <td><a [routerLink]="['/cohort', cohort.id, 'view' ]">{{cohort.id}}</a></td>
- <td>{{cohort.cohortId}}</td>
- <td>{{cohort.gradDate}}</td>
- <td class="text-right">
- <div class="btn-group flex-btn-group-container">
- <button type="submit"
- [routerLink]="['/cohort', cohort.id, 'view' ]"
- class="btn btn-info btn-sm">
- <fa-icon [icon]="'eye'"></fa-icon>
- <span class="d-none d-md-inline" jhiTranslate="entity.action.view">View</span>
- </button>
- <button type="submit"
- [routerLink]="['/cohort', cohort.id, 'edit']"
- class="btn btn-primary btn-sm">
- <fa-icon [icon]="'pencil-alt'"></fa-icon>
- <span class="d-none d-md-inline" jhiTranslate="entity.action.edit">Edit</span>
- </button>
- <button type="submit"
- [routerLink]="['/', { outlets: { popup: 'cohort/'+ cohort.id + '/delete'} }]"
- replaceUrl="true"
- queryParamsHandling="merge"
- class="btn btn-danger btn-sm">
- <fa-icon [icon]="'times'"></fa-icon>
- <span class="d-none d-md-inline" jhiTranslate="entity.action.delete">Delete</span>
- </button>
- </div>
- </td>
- </tr>
- </tbody>
- </table>
- </div>
- </div>
|