Skip to content
Snippets Groups Projects
Commit 6ecf6e86 authored by Gabriel Copat's avatar Gabriel Copat
Browse files

Bugfixing w/ Rhys Nute

parent f4f01663
No related branches found
No related tags found
2 merge requests!38Draft: Businesses,!31Resolve "As a user, I want to see a page of local authorities so that I can easily source contact details for a variety of different local authorities."
...@@ -19,7 +19,7 @@ import java.util.List; ...@@ -19,7 +19,7 @@ import java.util.List;
public class organisationControllers { public class organisationControllers {
@GetMapping("/localauthorities") @GetMapping("/localauthorities")
public ModelAndView getLocalAuthoritiesPage(){ public ModelAndView getLocalAuthoritiesPage(){
ModelAndView modelAndView = new ModelAndView("WorkWith/local-authorities.html"); ModelAndView modelAndView = new ModelAndView("local-authorities");
return modelAndView; return modelAndView;
} }
@GetMapping("/businesses") @GetMapping("/businesses")
......
...@@ -3,19 +3,19 @@ ...@@ -3,19 +3,19 @@
<head> <head>
<meta charset="UTF-8"> <meta charset="UTF-8">
<title>Local Authorities</title> <title>Local Authorities</title>
<link rel="stylesheet" href="../static/css/templatingstyle.css"> <link rel="stylesheet" href="../../static/css/templatingstyle.css">
</head> </head>
<header th:insert="~{/towns/Templating.html::header}"></header> <header th:insert="~{/fragments/Templating.html::header}"></header>
<body> <body>
<h1>Local Authorities</h1> <h1>Local Authorities</h1>
<div id="councils"> <div id="councils">
<p>Caerphilly County Borough Council,<br>Tredomen Park,<br> Ystrad Mynach,<br> Hengoed,<br> CF82 7PG</p> <p>Caerphilly County Borough Council,<br>Tredomen Park,<br> Ystrad Mynach,<br> Hengoed,<br> CF82 7PG</p>
<a href="https://www.caerphilly.gov.uk/main.aspx?lang=en-GB">Caerphilly County Borough Council Website</a> <a href="https://www.caerphilly.gov.uk/main.aspx?lang=en-GB">Caerphilly County Borough Council Website</a>
<p>Risca Town Council,<br>Risca Palace Library,<br>Unit B,<br>75 Tredegar Street,<br>Risca,<br>NP11 6BW</p> <p>Risca Town Council,<br>Risca Palace Library,<br>Unit B,<br>75 Tredegar Street,<br>Risca,<br>NP11 6BW</p>
<a href="https://www.riscatowncouncil.org.uk/">Risca Town Council Website</a> <a href="https://www.riscatowncouncil.org.uk/">Risca Town Council Website</a>
<p>Penarth Town Council West House,<br>Stanwell Road,<br>Penarth,<br> CF64 2YG</p> <p>Penarth Town Council West House,<br>Stanwell Road,<br>Penarth,<br> CF64 2YG</p>
<a href="https://www.penarthtowncouncil.gov.uk/your-council/">Penarth Town Council Website</a> <a href="https://www.penarthtowncouncil.gov.uk/your-council/">Penarth Town Council Website</a>
</div> </div>
<footer th:insert="~{/towns/Templating.html::footer}"></footer> <footer th:insert="~{/fragments/Templating.html::footer}"></footer>
</body> </body>
</html> </html>
\ No newline at end of file
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
<link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}"> <link rel="stylesheet" th:href="@{css/localAuthorityPageStyle.css}">
<link rel="stylesheet" th:href="@{css/templatingstyle.css}"> <link rel="stylesheet" th:href="@{css/templatingstyle.css}">
</head> </head>
<header th:insert="~{/towns/Templating.html::header}"></header> <header th:insert="~{/fragments/Templating.html::header}"></header>
<body> <body>
<h1>Local Authorities</h1> <h1>Local Authorities</h1>
<div id="councils"> <div id="councils">
...@@ -15,6 +15,6 @@ ...@@ -15,6 +15,6 @@
</ul> </ul>
</div> </div>
<button><a href="/localForm" id="authority">Local Authorities please enter here</a></button> <button><a href="/localForm" id="authority">Local Authorities please enter here</a></button>
<footer th:insert="~{/towns/Templating.html::footer}"></footer> <footer th:insert="~{/fragments/Templating.html::footer}"></footer>
</body> </body>
</html> </html>
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment