All files / app/pages/logistics logistics.component.html

100% Statements 47/47
100% Branches 2/2
100% Functions 1/1
100% Lines 47/47

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 481x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x  
@if (branding?.logo_url) {
	<grt-brand-header-element></grt-brand-header-element>
} @else {
	<grt-header-element
		[showReqCall]="false"
		[showTrips]="true"
		[indexPage]="false"
		[showCustReview]="true"
		[showContactUs]="true"
	></grt-header-element>
}
<div class="accom">
	<div class="inner is-smaller margin100">
		<div class="hide-mobile">
			<grt-progress-bar (moveWizardToStep)="moveWizardToStep($event)" [stage]="3"></grt-progress-bar>
		</div>
		<div class="hide-tablet hide-desktop">
			<grt-progress-bar-mobile (moveWizardToStep)="moveWizardToStep($event)" [stage]="3"></grt-progress-bar-mobile>
		</div>
		<a (click)="back()" class="link-back pointer m-t-20">Back</a>
		<h1 class="left h-main m-t-10">Accommodation & Transportation</h1>
		@if (wizardLocal) {
			<grt-accomodation #accomodation [wizardLocal]="wizardLocal"></grt-accomodation>
		}
		@if (wizardLocal) {
			<grt-transportation-b-c #transportationbc [wizardLocal]="wizardLocal"></grt-transportation-b-c>
		}
		<div class="sum-fixed is-smaller">
			<grt-line-element></grt-line-element>
			<div class="summary inner is-smaller top-bordered">
				<div class="summary-cols">
					<div class="summary-cols-left">
						<p class="summary-cols-left-text left">Your itinerary includes:</p>
						<p class="summary-cols-left-text left bold max-100-px-overflow">
							{{ addedCitiesNamesBottom }}
						</p>
					</div>
				</div>
				<div class="summary-cols-right">
					<a (click)="nextStep()">
						<button class="btn btn-green-brand form__submit uppercase">continue</button>
					</a>
				</div>
			</div>
		</div>
	</div>
</div>