69 lines
4.1 KiB
HTML
69 lines
4.1 KiB
HTML
<div>
|
|
<h2 id="page-heading">
|
|
<span jhiTranslate="hsadminNgApp.share.home.title">Shares</span>
|
|
<button id="jh-create-entity" class="btn btn-primary float-right jh-create-entity create-share" [routerLink]="['/share/new']">
|
|
<fa-icon [icon]="'plus'"></fa-icon>
|
|
<span jhiTranslate="hsadminNgApp.share.home.createLabel">
|
|
Create new Share
|
|
</span>
|
|
</button>
|
|
</h2>
|
|
<jhi-alert></jhi-alert>
|
|
<br/>
|
|
<div class="table-responsive" *ngIf="shares">
|
|
<table class="table table-striped">
|
|
<thead>
|
|
<tr jhiSort [(predicate)]="predicate" [(ascending)]="reverse" [callback]="reset.bind(this)">
|
|
<th jhiSortBy="id"><span jhiTranslate="global.field.id">ID</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th jhiSortBy="documentDate"><span jhiTranslate="hsadminNgApp.share.documentDate">Document Date</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th jhiSortBy="valueDate"><span jhiTranslate="hsadminNgApp.share.valueDate">Value Date</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th jhiSortBy="action"><span jhiTranslate="hsadminNgApp.share.action">Action</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th jhiSortBy="quantity"><span jhiTranslate="hsadminNgApp.share.quantity">Quantity</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th jhiSortBy="remark"><span jhiTranslate="hsadminNgApp.share.remark">Remark</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th jhiSortBy="membershipDocumentDate"><span jhiTranslate="hsadminNgApp.share.membership">Membership</span> <fa-icon [icon]="'sort'"></fa-icon></th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody infinite-scroll (scrolled)="loadPage(page + 1)" [infiniteScrollDisabled]="page >= links['last']" [infiniteScrollDistance]="0">
|
|
<tr *ngFor="let share of shares ;trackBy: trackId">
|
|
<td><a [routerLink]="['/share', share.id, 'view' ]">{{share.id}}</a></td>
|
|
<td>{{share.documentDate | date:'mediumDate'}}</td>
|
|
<td>{{share.valueDate | date:'mediumDate'}}</td>
|
|
<td jhiTranslate="{{'hsadminNgApp.ShareAction.' + share.action}}">{{share.action}}</td>
|
|
<td>{{share.quantity}}</td>
|
|
<td>{{share.remark}}</td>
|
|
<td>
|
|
<div *ngIf="share.membershipId">
|
|
<a [routerLink]="['../membership', share.membershipId , 'view' ]" >{{share.membershipDocumentDate}}</a>
|
|
</div>
|
|
</td>
|
|
<td class="text-right">
|
|
<div class="btn-group flex-btn-group-container">
|
|
<button type="submit"
|
|
[routerLink]="['/share', share.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]="['/share', share.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]="['/', 'share', { outlets: { popup: share.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>
|