Skip to content
Snippets Groups Projects
Commit e17dfef7 authored by Tor-Einar Skog's avatar Tor-Einar Skog
Browse files

Handling GRID forecasts that have no specific weather station

parent ba7a3437
No related branches found
No related tags found
No related merge requests found
...@@ -90,7 +90,7 @@ ...@@ -90,7 +90,7 @@
</#if> </#if>
</td> </td>
<td>${forecastConfiguration.locationPointOfInterestId.name}</td> <td>${forecastConfiguration.locationPointOfInterestId.name}</td>
<td>${forecastConfiguration.weatherStationPointOfInterestId.name}</td> <td><#if forecastConfiguration.weatherStationPointOfInterestId?has_content>${forecastConfiguration.weatherStationPointOfInterestId.name}</#if></td>
<td>${forecastConfiguration.dateStart}</td> <td>${forecastConfiguration.dateStart}</td>
<td>${forecastConfiguration.dateEnd}</td> <td>${forecastConfiguration.dateEnd}</td>
</tr> </tr>
...@@ -119,7 +119,7 @@ ...@@ -119,7 +119,7 @@
</#if> </#if>
</td> </td>
<td>${forecastConfiguration.locationPointOfInterestId.name}</td> <td>${forecastConfiguration.locationPointOfInterestId.name}</td>
<td>${forecastConfiguration.weatherStationPointOfInterestId.name}</td> <td><#if forecastConfiguration.weatherStationPointOfInterestId?has_content>${forecastConfiguration.weatherStationPointOfInterestId.name}</#if></td>
<td>${forecastConfiguration.dateStart}</td> <td>${forecastConfiguration.dateStart}</td>
<td>${forecastConfiguration.dateEnd}</td> <td>${forecastConfiguration.dateEnd}</td>
</tr> </tr>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment