form.html 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587
  1. <!DOCTYPE html>
  2. <!--suppress XmlHighlighting -->
  3. <html lang="en" xmlns:th="http://www.thymeleaf.org">
  4. <head>
  5. <!-- Required meta tags -->
  6. <meta charset="utf-8">
  7. <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
  8. <!-- Bootstrap CSS -->
  9. <!--suppress SpellCheckingInspection -->
  10. <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css"
  11. integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
  12. <!--suppress SpellCheckingInspection -->
  13. <script src="https://code.jquery.com/jquery-3.6.0.min.js"
  14. integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4=" crossorigin="anonymous"></script>
  15. <title>Grants - person</title>
  16. </head>
  17. <body>
  18. <!--/*@thymesVar id="deathCertificateCommand" type="scot.carricksoftware.grants.commands.certificates.deathcertificates.DeathCertificateCommand"*/-->
  19. <div th:insert="~{fragments/layout::banner}"></div>
  20. <div class="container border border-info rounded-3 text-center p-4">
  21. <h3>Death Certificate Details</h3>
  22. <form th:object="${deathCertificateCommand}" th:action="@{/deathCertificate}" method="post">
  23. <div th:if="${#fields.hasErrors('*')}" class="alert alert-danger">
  24. <p>Please Correct The Errors Below</p>
  25. </div>
  26. <table style="width:100%;">
  27. <tr>
  28. <td style="text-align: right;">
  29. <label for="id"><span style="color: rgb(255,0,0);">*</span>Database Id :&nbsp;</label>
  30. </td>
  31. <td style="text-align: left;">
  32. <input class="form-control" id="id"
  33. th:field="*{id}" type="text" readonly>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td style="text-align: right;">
  38. <label for="certificateNumber">Certificate Number :&nbsp;</label>
  39. </td>
  40. <td style="text-align: left;">
  41. <input class="form-control" id="certificateNumber"
  42. th:field="*{certificateNumber}" type="text">
  43. <div th:if="${#fields.hasErrors('certificateNumber')}">
  44. <ul class="text-danger">
  45. <li th:each="err : ${#fields.errors('certificateNumber')}" th:text="${err}"/>
  46. </ul>
  47. </div>
  48. </td>
  49. </tr>
  50. <tr>
  51. <td style="text-align: right;">
  52. <label for="certificateSource">Certificate Source&nbsp;:&nbsp;</label>
  53. </td>
  54. <td style="text-align: left;">
  55. <div>
  56. <select id="certificateSource" name="certificateSource" th:field="*{certificateSource}">
  57. <option th:value="${''}" th:text="${''}"></option>
  58. <!--/*@thymesVar id="organisations" type="scot.carricksoftware.grants.domains.places.Organisation"*/-->
  59. <option th:each="organisation : ${organisations}"
  60. th:value="${organisation.id}" th:text="${organisation.toString()}"></option>
  61. </select>
  62. <div th:if="${#fields.hasErrors('certificateSource')}">
  63. <ul class="text-danger">
  64. <li th:each="err : ${#fields.errors('certificateSource')}" th:text="${err}"/>
  65. </ul>
  66. </div>
  67. </div>
  68. </td>
  69. </tr>
  70. <tr>
  71. <td style="text-align: right;">
  72. <label for="certificateDate">Certificate Date (dd/mm/yyyy) :&nbsp;</label>
  73. </td>
  74. <td style="text-align: left;">
  75. <input class="form-control" id="certificateDate"
  76. th:field="*{certificateDate}" type="text">
  77. <div th:if="${#fields.hasErrors('certificateDate')}">
  78. <ul class="text-danger">
  79. <li th:each="err : ${#fields.errors('certificateDate')}" th:text="${err}"/>
  80. </ul>
  81. </div>
  82. </td>
  83. </tr>
  84. <tr style="border-bottom: 5px solid #ccc;">
  85. <td style="text-align: right;">
  86. <label for="certificateType">Certificate Type :&nbsp;</label>
  87. </td>
  88. <td style="text-align: left;">
  89. <div>
  90. <select id="certificateType" style="width: 200px;" name="certificateType"
  91. th:field="*{certificateType}">
  92. <option th:value="${''}" th:text="${''}"></option>
  93. <option th:each="value : ${T(scot.carricksoftware.grants.enums.certificates.CertificateType).values()}"
  94. th:value="${value}" th:text="${value.label}"></option>
  95. </select>
  96. </div>
  97. <div th:if="${#fields.hasErrors('certificateType')}">
  98. <ul class="text-danger">
  99. <li th:each="err : ${#fields.errors('certificateType')}" th:text="${err}"/>
  100. </ul>
  101. </div>
  102. </tr>
  103. <tr>
  104. <td style="text-align: right;">
  105. <label for="registrationAuthority">Registration Authority :&nbsp;</label>
  106. </td>
  107. <td style="text-align: left;">
  108. <div>
  109. <select id="registrationAuthority" style="width: 200px;" name="registrationAuthority"
  110. th:field="*{registrationAuthority}">
  111. <option th:value="${''}" th:text="${''}"></option>
  112. <!--/*@thymesVar id="organisations" type="scot.carricksoftware.grants.domains.places.Organisation"*/-->
  113. <option th:each="organisation : ${organisations}"
  114. th:value="${organisation.id}" th:text="${organisation.name}"></option>
  115. </select>
  116. </div>
  117. <div th:if="${#fields.hasErrors('registrationAuthority')}">
  118. <ul class="text-danger">
  119. <li th:each="err : ${#fields.errors('registrationAuthority')}" th:text="${err}"/>
  120. </ul>
  121. </div>
  122. </td>
  123. </tr>
  124. <tr>
  125. <td style="text-align: right;">
  126. <label for="volume">Volume :&nbsp;</label>
  127. </td>
  128. <td style="text-align: left;">
  129. <div>
  130. <input class="volume" id="volume"
  131. th:field="*{volume}" type="text">
  132. <div th:if="${#fields.hasErrors('volume')}">
  133. <ul class="text-danger">
  134. <li th:each="err : ${#fields.errors('volume')}" th:text="${err}"/>
  135. </ul>
  136. </div>
  137. </div>
  138. </td>
  139. </tr>
  140. <tr style="border-bottom: 5px solid #ccc;">
  141. <td style="text-align: right;">
  142. <label for="number">Number :&nbsp;</label>
  143. </td>
  144. <td style="text-align: left;">
  145. <div>
  146. <input class="number" id="number"
  147. th:field="*{number}" type="text">
  148. <div th:if="${#fields.hasErrors('number')}">
  149. <ul class="text-danger">
  150. <li th:each="err : ${#fields.errors('number')}" th:text="${err}"/>
  151. </ul>
  152. </div>
  153. </div>
  154. </td>
  155. </tr>
  156. <tr>
  157. <td style="text-align: right;">
  158. <label for="deceased">Deceased :&nbsp;</label>
  159. </td>
  160. <td style="text-align: left;">
  161. <select id="deceased" name="deceased" th:field="*{deceased}">
  162. <option th:value="${''}" th:text="${''}"></option>
  163. <option th:each="person : ${people}"
  164. th:value="${person.id}" th:text="${person.toString()}"></option>
  165. </select>
  166. <div th:if="${#fields.hasErrors('deceased')}">
  167. <ul class="text-danger">
  168. <li th:each="err : ${#fields.errors('deceased')}" th:text="${err}"/>
  169. </ul>
  170. </div>
  171. </td>
  172. </tr>
  173. <tr>
  174. <td style="text-align: right;">
  175. <label for="sex">Sex :&nbsp;</label>
  176. </td>
  177. <td style="text-align: left;">
  178. <select id="sex" style="width: 200px;" name="sex" th:field="*{sex}">
  179. <option th:value="${''}" th:text="${''}"></option>
  180. <option th:each="value : ${T(scot.carricksoftware.grants.enums.general.Sex).values()}"
  181. th:value="${value}" th:text="${value.label}"></option>
  182. </select>
  183. <div th:if="${#fields.hasErrors('sex')}">
  184. <ul class="text-danger">
  185. <li th:each="err : ${#fields.errors('sex')}" th:text="${err}"/>
  186. </ul>
  187. </div>
  188. </td>
  189. </tr>
  190. <tr>
  191. <td style="text-align: right">
  192. <label for="occupation">Occupation :&nbsp;</label>
  193. </td>
  194. <td style="text-align: left;">
  195. <div>
  196. <input class="occupation" id="occupation"
  197. th:field="*{occupation}" type="text">
  198. <div th:if="${#fields.hasErrors('occupation')}">
  199. <ul class="text-danger">
  200. <li th:each="err : ${#fields.errors('occupation')}" th:text="${err}"/>
  201. </ul>
  202. </div>
  203. </div>
  204. </td>
  205. </tr>
  206. <tr>
  207. <td style="text-align: right;">
  208. <label for="whenBorn">When Born (dd/mm/yyyy hh:mm) :&nbsp;</label>
  209. </td>
  210. <td style="text-align: left;">
  211. <div>
  212. <input class="whenBorn" id="whenBorn"
  213. th:field="*{whenBorn}" type="text">
  214. <div th:if="${#fields.hasErrors('whenBorn')}">
  215. <ul class="text-danger">
  216. <li th:each="err : ${#fields.errors('whenBorn')}" th:text="${err}"/>
  217. </ul>
  218. </div>
  219. </div>
  220. </td>
  221. </tr>
  222. <tr>
  223. <td style="text-align: right;">
  224. <label for="age">Age :&nbsp;</label>
  225. </td>
  226. <td style="text-align: left;">
  227. <div>
  228. <input class="age" id="age"
  229. th:field="*{age}" type="text">
  230. <div th:if="${#fields.hasErrors('age')}">
  231. <ul class="text-danger">
  232. <li th:each="err : ${#fields.errors('age')}" th:text="${err}"/>
  233. </ul>
  234. </div>
  235. </div>
  236. </td>
  237. </tr>
  238. <tr>
  239. <td style="text-align: right;">
  240. <label for="maritalStatus">Marital Status :&nbsp;</label>
  241. </td>
  242. <td style="text-align: left;">
  243. <div>
  244. <input class="maritalStatus" id="maritalStatus"
  245. th:field="*{maritalStatus}" type="text">
  246. <div th:if="${#fields.hasErrors('maritalStatus')}">
  247. <ul class="text-danger">
  248. <li th:each="err : ${#fields.errors('matitalStatus')}" th:text="${err}"/>
  249. </ul>
  250. </div>
  251. </div>
  252. </td>
  253. </tr>
  254. <tr>
  255. <td style="text-align: right;">
  256. <label for="whenDied">When Died (dd/mm/yyyy hh:mm) :&nbsp;</label>
  257. </td>
  258. <td style="text-align: left;">
  259. <div>
  260. <input class="whenDied" id="whenDied"
  261. th:field="*{whenBorn}" type="text">
  262. <div th:if="${#fields.hasErrors('whenDied')}">
  263. <ul class="text-danger">
  264. <li th:each="err : ${#fields.errors('whenDied')}" th:text="${err}"/>
  265. </ul>
  266. </div>
  267. </div>
  268. </td>
  269. </tr>
  270. <tr>
  271. <td style="text-align: right; background-color: #F542A4;">
  272. <label for="whereDied">Where Died :&nbsp;</label>
  273. </td>
  274. <td style="text-align: left;">
  275. <select id="whereDied" name="whereDied" th:field="*{whereDied}">
  276. <option th:value="${''}" th:text="${''}"></option>
  277. <option th:each="place : ${places}"
  278. th:value="${place.id}" th:text="${place.toString()}"></option>
  279. </select>
  280. <div th:if="${#fields.hasErrors('whereDied')}">
  281. <ul class="text-danger">
  282. <li th:each="err : ${#fields.errors('whereDied')}" th:text="${err}"/>
  283. </ul>
  284. </div>
  285. </td>
  286. </tr>
  287. <tr>
  288. <td style="text-align: right; background-color: #F542A4;">
  289. <label for="untrackedWhereDied">Where Died (untracked) :&nbsp;</label>
  290. </td>
  291. <td style="text-align: left;">
  292. <div>
  293. <input class="untrackedWhereDied" id="untrackedWhereDied"
  294. th:field="*{untrackedWhereDied}" type="text">
  295. <div th:if="${#fields.hasErrors('untrackedWhereDied')}">
  296. <ul class="text-danger">
  297. <li th:each="err : ${#fields.errors('untrackedWhereDied')}" th:text="${err}"/>
  298. </ul>
  299. </div>
  300. </div>
  301. </td>
  302. </tr>
  303. <tr>
  304. <td style="text-align: right; background-color: #5D42F5;">
  305. <label for="usualResidence">Usual Residence :&nbsp;</label>
  306. </td>
  307. <td style="text-align: left;">
  308. <select id="usualResidence" name="usualResidence" th:field="*{usualResidence}">
  309. <option th:value="${''}" th:text="${''}"></option>
  310. <option th:each="place : ${places}"
  311. th:value="${place.id}" th:text="${place.toString()}"></option>
  312. </select>
  313. <div th:if="${#fields.hasErrors('usualResidence')}">
  314. <ul class="text-danger">
  315. <li th:each="err : ${#fields.errors('usualResidence')}" th:text="${err}"/>
  316. </ul>
  317. </div>
  318. </td>
  319. </tr>
  320. <tr>
  321. <td style="text-align: right; background-color: #5D42F5;">
  322. <label for="untrackedUsualResidence">Usual Residence (untracked) :&nbsp;</label>
  323. </td>
  324. <td style="text-align: left;">
  325. <div>
  326. <input class="untrackedUsualResidence" id="untrackedUsualResidence"
  327. th:field="*{untrackedUsualResidence}" type="text">
  328. <div th:if="${#fields.hasErrors('untrackedUsualResidence')}">
  329. <ul class="text-danger">
  330. <li th:each="err : ${#fields.errors('uFF0000FFntrackedUsualResidence')}"
  331. th:text="${err}"/>
  332. </ul>
  333. </div>
  334. </div>
  335. </td>
  336. </tr>
  337. <tr>
  338. <td style="text-align: right;">
  339. <label for="causeOfDeath">Cause of Death :&nbsp;</label>
  340. </td>
  341. <td style="text-align: left;">
  342. <div>
  343. <textarea class="causeOfDeath" id="causeOfDeath" rows="5" cols="60"
  344. th:field="*{causeOfDeath}" type="text"></textarea>
  345. <div th:if="${#fields.hasErrors('causeOfDeath')}">
  346. <ul class="text-danger">
  347. <li th:each="err : ${#fields.errors('causeOfDeath')}" th:text="${err}"/>
  348. </ul>
  349. </div>
  350. </div>
  351. </td>
  352. </tr>
  353. <tr>
  354. <td style="text-align: right; background-color: #F2F542;;">
  355. <label for="spouse">Spouse :&nbsp;</label>
  356. </td>
  357. <td style="text-align: left;">
  358. <div>
  359. <input class="spouse" id="spouse"
  360. th:field="*{spouse}" type="text">
  361. <div th:if="${#fields.hasErrors('spouse')}">
  362. <ul class="text-danger">
  363. <li th:each="err : ${#fields.errors('spouse')}" th:text="${err}"/>
  364. </ul>
  365. </div>
  366. </div>
  367. </td>
  368. </tr>
  369. <tr>
  370. <td style="text-align: right; background-color: #F2F542;">
  371. <label for="untrackedSpouse">Spouse (untracked) :&nbsp;</label>
  372. </td>
  373. <td style="text-align: left;">
  374. <div>
  375. <input class="untrackedSpouse" id="untrackedSpouse"
  376. th:field="*{untrackedSpouse}" type="text">
  377. <div th:if="${#fields.hasErrors('untrackedSpouse')}">
  378. <ul class="text-danger">
  379. <li th:each="err : ${#fields.errors('untrackedSpouse')}" th:text="${err}"/>
  380. </ul>
  381. </div>
  382. </div>
  383. </td>
  384. </tr>
  385. <tr>
  386. <td style="text-align: right;">
  387. <label for="spouseOccupation">Spouse Occupation :&nbsp;</label>
  388. </td>
  389. <td style="text-align: left;">
  390. <div>
  391. <input class="spouseOccupation" id="spouseOccupation"
  392. th:field="*{spouseOccupation}" type="text">
  393. <div th:if="${#fields.hasErrors('spouseOccupation')}">
  394. <ul class="text-danger">
  395. <li th:each="err : ${#fields.errors('spouseOccupation')}" th:text="${err}"/>
  396. </ul>
  397. </div>
  398. </div>
  399. </td>
  400. </tr>
  401. <tr>
  402. <td style="text-align: right; background-color: #D6EEEE;">
  403. <label for="father">Father :&nbsp;</label>
  404. </td>
  405. <td style="text-align: left;">
  406. <div>
  407. <input class="father" id="father"
  408. th:field="*{father}" type="text">
  409. <div th:if="${#fields.hasErrors('father')}">
  410. <ul class="text-danger">
  411. <li th:each="err : ${#fields.errors('father')}" th:text="${err}"/>
  412. </ul>
  413. </div>
  414. </div>
  415. </td>
  416. </tr>
  417. <tr>
  418. <td style="text-align: right; background-color: #D6EEEE;">
  419. <label for="untrackedFather">Father (untracked) :&nbsp;</label>
  420. </td>
  421. <td style="text-align: left;">
  422. <div>
  423. <input class="untrackedFather" id="untrackedFather"
  424. th:field="*{untrackedFather}" type="text">
  425. <div th:if="${#fields.hasErrors('untrackedFather')}">
  426. <ul class="text-danger">
  427. <li th:each="err : ${#fields.errors('untrackedFather')}" th:text="${err}"/>
  428. </ul>
  429. </div>
  430. </div>
  431. </td>
  432. </tr>
  433. <tr>
  434. <td style="text-align: right;">
  435. <label for="fatherOccupation">Father Occupation :&nbsp;</label>
  436. </td>
  437. <td style="text-align: left;">
  438. <div>
  439. <input class="fatherOccupation" id="fatherOccupation"
  440. th:field="*{fatherOccupation}" type="text">
  441. <div th:if="${#fields.hasErrors('fatherOccupation')}">
  442. <ul class="text-danger">
  443. <li th:each="err : ${#fields.errors('fatherOccupation')}" th:text="${err}"/>
  444. </ul>
  445. </div>
  446. </div>
  447. </td>
  448. </tr>
  449. <tr>
  450. <td style="text-align: right; background-color: #73ff00;">
  451. <label for="mother">Mother :&nbsp;</label>
  452. </td>
  453. <td style="text-align: left;">
  454. <div>
  455. <input class="mother" id="mother"
  456. th:field="*{mother}" type="text">
  457. <div th:if="${#fields.hasErrors('mother')}">
  458. <ul class="text-danger">
  459. <li th:each="err : ${#fields.errors('mother')}" th:text="${err}"/>
  460. </ul>
  461. </div>
  462. </div>
  463. </td>
  464. </tr>
  465. <tr>
  466. <td style="text-align: right; background-color: #73ff00;">
  467. <label for="untrackedMother">Mother (untracked) :&nbsp;</label>
  468. </td>
  469. <td style="text-align: left;">
  470. <div>
  471. <input class="untrackedMother" id="untrackedMother"
  472. th:field="*{untrackedMother}" type="text">
  473. <div th:if="${#fields.hasErrors('untrackedMother')}">
  474. <ul class="text-danger">
  475. <li th:each="err : ${#fields.errors('untrackedMother')}" th:text="${err}"/>
  476. </ul>
  477. </div>
  478. </div>
  479. </td>
  480. </tr>
  481. <tr>
  482. <td style="text-align: right;">
  483. <label for="motherOccupation">Mother Occupation :&nbsp;</label>
  484. </td>
  485. <td style="text-align: left;">
  486. <div>
  487. <input class="motherOccupation" id="motherOccupation"
  488. th:field="*{motherOccupation}" type="text">
  489. <div th:if="${#fields.hasErrors('motherOccupation')}">
  490. <ul class="text-danger">
  491. <li th:each="err : ${#fields.errors('motherOccupation')}" th:text="${err}"/>
  492. </ul>
  493. </div>
  494. </div>
  495. </td>
  496. </tr>
  497. <tr>
  498. <td style="text-align: right; background-color: #FFC300;">
  499. <label for="informant">Informant :&nbsp;</label>
  500. </td>
  501. <td style="text-align: left;">
  502. <div>
  503. <input class="informant" id="informant"
  504. th:field="*{informant}" type="text">
  505. <div th:if="${#fields.hasErrors('informant')}">
  506. <ul class="text-danger">
  507. <li th:each="err : ${#fields.errors('informant')}" th:text="${err}"/>
  508. </ul>
  509. </div>
  510. </div>
  511. </td>
  512. </tr>
  513. <tr>
  514. <td style="text-align: right; background-color: #FFC300;">
  515. <label for="untrackedInformant">Informant (untracked) :&nbsp;</label>
  516. </td>
  517. <td style="text-align: left;">
  518. <div>
  519. <input class="untrackedInformant" id="untrackedInformant"
  520. th:field="*{untrackedInformant}" type="text">
  521. <div th:if="${#fields.hasErrors('untrackedInformant')}">
  522. <ul class="text-danger">
  523. <li th:each="err : ${#fields.errors('untrackedInformant')}" th:text="${err}"/>
  524. </ul>
  525. </div>
  526. </div>
  527. </td>
  528. </tr>
  529. <tr>
  530. <td style="text-align: right;">
  531. <label for="informantQualification">Informant Qualification :&nbsp;</label>
  532. </td>
  533. <td style="text-align: left;">
  534. <div>
  535. <input class="informantQualification" id="informantQualification"
  536. th:field="*{informantQualification}" type="text">
  537. </div>
  538. </td>
  539. </tr>
  540. <tr>
  541. <td style="text-align: right;">
  542. <label for="whenRegistered">When Registered (dd/mm/yyyy) :&nbsp;</label>
  543. </td>
  544. <td style="text-align: left;">
  545. <div>
  546. <input class="whenRegistered" id="whenRegistered"
  547. th:field="*{whenRegistered}" type="text">
  548. <div th:if="${#fields.hasErrors('whenRegistered')}">
  549. <ul class="text-danger">
  550. <li th:each="err : ${#fields.errors('whenRegistered')}" th:text="${err}"/>
  551. </ul>
  552. </div>
  553. </div>
  554. </td>
  555. </tr>
  556. <tr>
  557. <td style="text-align: right;">
  558. <label for="whereRegistered">Where Registered :&nbsp;</label>
  559. </td>
  560. <td style="text-align: left;">
  561. <div>
  562. <input class="whereRegistered" id="whereRegistered"
  563. th:field="*{whereRegistered}" type="text">
  564. <div th:if="${#fields.hasErrors('whereRegistered')}">
  565. <ul class="text-danger">
  566. <li th:each="err : ${#fields.errors('whereRegistered')}" th:text="${err}"/>
  567. </ul>
  568. </div>
  569. </div>
  570. </td>
  571. </tr>
  572. </table>
  573. <button type="submit" class="btn btn-primary">Commit</button>
  574. <a class="btn btn-secondary" th:href="@{/deathCertificates}" th:text="${'List all'}">List all</a>
  575. <a class="btn btn-success" th:href="@{/static}" th:text="${'Home'}">Home</a>
  576. <h6><span style="color: rgb(255,0,0);">*</span><span> Cannot be edited</span></h6>
  577. </form>
  578. </div>
  579. </body>
  580. </html>