2024-01-04 00:01:33 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html th:lang="${#locale.toString()}"
|
|
|
|
th:lang-direction="#{language.direction}"
|
|
|
|
xmlns:th="http://www.thymeleaf.org">
|
|
|
|
|
|
|
|
<th:block
|
2024-01-04 19:41:33 +01:00
|
|
|
th:insert="~{fragments/common :: head(title=#{licenses.title}, header=#{licenses.title})}"></th:block>
|
2024-01-04 00:01:33 +01:00
|
|
|
|
|
|
|
|
|
|
|
<style>
|
2024-01-04 19:41:33 +01:00
|
|
|
td a {
|
2024-01-04 00:01:33 +01:00
|
|
|
text-decoration: none;
|
|
|
|
}
|
|
|
|
|
2024-01-04 19:41:33 +01:00
|
|
|
td a:hover, td a:focus {
|
2024-01-04 00:01:33 +01:00
|
|
|
text-decoration: underline;
|
|
|
|
/* Adds underline on hover/focus for clarity */
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
<body>
|
|
|
|
<div id="page-container">
|
|
|
|
<div id="content-wrap">
|
|
|
|
<div th:insert="~{fragments/navbar.html :: navbar}"></div>
|
|
|
|
<br> <br>
|
|
|
|
|
|
|
|
<div class="container">
|
|
|
|
<div class="row justify-content-center">
|
|
|
|
<div class="col-md-6">
|
2024-01-04 19:41:33 +01:00
|
|
|
<h2 th:text="#{licenses.header}">3rd Party licenses</h2>
|
2024-01-04 00:01:33 +01:00
|
|
|
<table class="table table-striped">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
2024-01-04 19:41:33 +01:00
|
|
|
<th th:text="#{licenses.module}">Module</th>
|
|
|
|
<th th:text="#{licenses.version}">Version</th>
|
|
|
|
<th th:text="#{licenses.license}">License</th>
|
2024-01-04 00:01:33 +01:00
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr th:each="dep : ${dependencies}">
|
|
|
|
<td><a th:href="${dep.moduleUrl}"
|
|
|
|
th:text="${dep.moduleName}"></a></td>
|
|
|
|
<td th:text="${dep.moduleVersion}"></td>
|
|
|
|
<td><a th:href="${dep.moduleLicenseUrl}"
|
|
|
|
th:text="${dep.moduleLicense}"></a></td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div th:insert="~{fragments/footer.html :: footer}"></div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|