}
add( new Label( "transportStatus", new StringResourceModel(
"transportStatus.${status}", this, new Model<ValueMap>( map ) ) ) );
// ETA ----------------------------------------------------------------------
String destination = cargo.routeSpecification().get().destination().get().getString();
Date eta = cargo.delivery().get().eta().get();
String etaString = eta == null ? "?" : new SimpleDateFormat( "yyyy-MM-dd" ).format( eta );
add( new Label( "eta", new StringResourceModel(
"eta", this, null, Model.of( destination ), Model.of( etaString ) ) ) );