You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

23 rivejä
808 B

  1. @if (userTrip) {
  2. <div class="spt-container">
  3. <div class="spt-headline d-flex justify-content-between align-items-start">
  4. <h2>{{ ('basic.edit') | translate }} {{ 'model.user_trip' | translate }}
  5. {{ userTrip.trip?.pilotageReference }} ({{ userTrip.user?.fullName }})</h2>
  6. </div>
  7. </div>
  8. <mat-tab-group>
  9. <mat-tab label="{{ 'model.user_trip' | translate }}">
  10. <app-user-trip-form
  11. [data]="userTrip"
  12. [mode]="FormMode.Edit"
  13. [id]="appHelperService.extractId(userTrip.id!)"
  14. (submit)="onFormUpdate($event)"
  15. >
  16. </app-user-trip-form>
  17. </mat-tab>
  18. <mat-tab label="{{ 'user_trip.events' | translate }}">
  19. </mat-tab>
  20. </mat-tab-group>
  21. }