source: bus-n-go-pavel-216049/bus-n-go-frontend/src/app/components/ticket/ticket.component.html@ baf4cc4

Last change on this file since baf4cc4 was baf4cc4, checked in by ppaunovski <paunovskipavel@…>, 4 weeks ago

split group project and individual project into two separate folders

  • Property mode set to 100644
File size: 705 bytes
Line 
1<div>
2 <mat-card appearance="outlined">
3 <mat-card-header>
4 <mat-card-title> {{ticket?.tip?.ime}}</mat-card-title>
5 <mat-card-subtitle>Duration: {{ticket?.tip?.trajnost}}</mat-card-subtitle>
6 <mat-card-subtitle>Date of buying: {{ticket?.datumKupuvanje}}</mat-card-subtitle>
7 <mat-card-subtitle>Date of activation: {{ticket?.datumAktivacija}}</mat-card-subtitle>
8 </mat-card-header>
9 <mat-card-actions>
10 <div class="w-full flex justify-between">
11 <button mat-button>Learn More</button>
12 <button mat-flat-button [disabled]="this.ticket?.datumAktivacija" (click)="activateTicket()">Activate</button>
13
14 </div>
15 </mat-card-actions>
16 </mat-card>
17</div>
Note: See TracBrowser for help on using the repository browser.