| .. | .. |
|---|
| 1 | 1 | <td-layout-card-over cardWidth="90"> |
|---|
| 2 | 2 | <md-toolbar role="toolbar" class="mat-secondary"> |
|---|
| 3 | + <button *ngIf="!!prevUrl" md-icon-button (click)="goBack()" color="accent"> |
|---|
| 4 | + <md-icon>arrow_back</md-icon> |
|---|
| 5 | + </button> |
|---|
| 3 | 6 | <span class="push-left-sm"> |
|---|
| 4 | 7 | <span class="md-title" i18n>Packs</span> |
|---|
| 5 | 8 | </span> |
|---|
| .. | .. |
|---|
| 11 | 14 | <button md-mini-fab color="accent" (click)="create()" [mdTooltip]="$L.get('Create a new pack')"> |
|---|
| 12 | 15 | <md-icon>add</md-icon> |
|---|
| 13 | 16 | </button> |
|---|
| 17 | + <md-toolbar-row *ngIf="!!filter_description"> |
|---|
| 18 | + <md-chip-list> |
|---|
| 19 | + <md-chip selected color="accent">{{filter_description}} </md-chip> |
|---|
| 20 | + </md-chip-list> |
|---|
| 21 | + <button md-icon-button (click)="reload()" > |
|---|
| 22 | + <md-icon>cancel</md-icon> |
|---|
| 23 | + </button> |
|---|
| 24 | + <span flex></span> |
|---|
| 25 | + </md-toolbar-row> |
|---|
| 14 | 26 | </md-toolbar> |
|---|
| 15 | 27 | <div flex="84" layout-align="center end" layout="column"> |
|---|
| 16 | 28 | <td-data-table |
|---|