February 2019
Intermediate to advanced
442 pages
11h 46m
English
Finally, the template for the show-gdp component will render the chart and show the country GDP data. The template looks as follows:
<div class="container"> <h2 id="page-heading"> <span> GDP data for country <b>{{currentCountry.name}}</b></span> </h2> <br/> <div class="row"> <div class="col-4"> <dl class="row"> <dt class="col-sm-4">Code</dt> <dd class="col-sm-8">{{currentCountry.code}}</dd> <dt class="col-sm-4">Name</dt> <dd class="col-sm-8">{{currentCountry.name}}</dd> <dt class="col-sm-4">Continent</dt> <dd class="col-sm-8">{{'gdpApp.Continent.' + currentCountry.continent | translate }}</dd> <dt class="col-sm-4">Region</dt> <dd class="col-sm-8">{{currentCountry.region}}</dd> <dt class="col-sm-4">Surface ...