public void populateItem(Item<ICellPopulator<T>> cellItem,
String componentId, IModel<T> rowModel) {
ResourceTender resourceTender = rowModel.getObject();
Location location = resourceTender.getLocation();
City city = location.getCity();
Country country = null;
IModel<String> locationModel = null;
if(city != null) {
country = city.getCountry();
String cityName = localizationReader.getString(city);
locationModel = country == null ?