New view of list

This commit is contained in:
Sébastien André
2019-10-09 13:10:41 +02:00
parent 11cdcba702
commit 2f59760cc1
15 changed files with 232 additions and 42 deletions

View File

@@ -10,13 +10,17 @@ import { NewJumpComponent } from './new-jump/new-jump.component';
import { ServiceApi } from '../services/serviceApi';
import { HttpClientModule } from '@angular/common/http';
import { ListOfAircraftsComponent } from './list-of-aircrafts/list-of-aircrafts.component';
import { ListOfJumpTypesComponent } from './list-of-jump-types/list-of-jump-types.component';
const appRoutes: Routes = [
{ path: 'summary', component: SummaryComponent },
{ path: 'jumpsList', component: ListOfJumpsComponent },
{ path: 'dz', component: ListOfDzsComponent },
{ path: 'newjump', component: NewJumpComponent }
{ path: 'newjump', component: NewJumpComponent },
{ path: 'aircraftList', component: ListOfAircraftsComponent },
{ path: 'jumpTypeList', component: ListOfJumpTypesComponent }
];
@@ -26,7 +30,9 @@ const appRoutes: Routes = [
SummaryComponent,
ListOfJumpsComponent,
ListOfDzsComponent,
NewJumpComponent
NewJumpComponent,
ListOfAircraftsComponent,
ListOfJumpTypesComponent
],
imports: [
RouterModule.forRoot(