Skip to content
Snippets Groups Projects
Commit c258baed authored by Rhys Evans's avatar Rhys Evans
Browse files

small chages

parent 250b23ba
No related branches found
No related tags found
1 merge request!44Location apporval form validation update
...@@ -82,7 +82,7 @@ public class LandmarksController { ...@@ -82,7 +82,7 @@ public class LandmarksController {
LocationsCoordinates ALocCoord = new LocationsCoordinates(locationID, locCoord.getLocationCoordsLat(), locCoord.getLocationCoordsLong()); LocationsCoordinates ALocCoord = new LocationsCoordinates(locationID, locCoord.getLocationCoordsLat(), locCoord.getLocationCoordsLong());
boolean checkIfCoorsWithinBoundaries = placesCoordinatesRepo.checkIfCoordsAreWithinTownBoundary(ALocCoord); boolean checkIfCoorsWithinBoundaries = placesCoordinatesRepo.checkIfCoordsAreWithinTownBoundary(ALocCoord);
if (checkIfCoorsWithinBoundaries==false){ // if coords outside associated town, form is returned to original state if (checkIfCoorsWithinBoundaries==false){ // if coords outside associated town, form is returned to original state
return new ModelAndView("redirect:/checkpointApproval"); return new ModelAndView("redirect:/checkpointApproval?error");
} }
placesCoordinatesRepo.addLocationCoord(ALocCoord); // adds valid landmark to locations table placesCoordinatesRepo.addLocationCoord(ALocCoord); // adds valid landmark to locations table
locationRepository.updateApprovalStatus(locationID); // updates approval status accordingly locationRepository.updateApprovalStatus(locationID); // updates approval status accordingly
......
...@@ -29,12 +29,12 @@ ...@@ -29,12 +29,12 @@
<br><br> <br><br>
<label> Location Latitude: <label> Location Latitude:
<input type="text" th:field="*{locationCoordsLat}" placeholder="Latitude Here"> <input type="text" th:field="*{locationCoordsLat}" placeholder="Latitude Here">
<div th:errors="*{locationCoordsLat}" th:if="${#fields.hasErrors('locationCoordsLat')}">ErrorlocationCoordsLat</div> <div th:if="${param==error}" class="coordError">Invalid Coordinates entered</div>
<br><br> <br><br>
<label> Location Longitude: <label> Location Longitude:
<input type="text" th:field="*{locationCoordsLong}" placeholder="Latitude Here"> <input type="text" th:field="*{locationCoordsLong}" placeholder="Latitude Here">
</label><br><br> </label><br><br>
<div th:errors="*{locationCoordsLong}" th:if="${#fields.hasErrors('locationCoordsLong')}">ErrorlocationCoordsLat</div> <div th:if="${param==error}" class="coordError">Invalid Coordinates entered<
<input type="submit"> <input type="submit">
</form> </form>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment