basex-lsp/webapp/lsp-manager/views/sockets.htm
2025-10-18 22:59:51 +01:00

22 lines
No EOL
572 B
HTML

<!DOCTYPE HTML5>
<html lang="en" xmlns:th="http://www.thymeleaf.org" xmlns:layout="http://www.ultraq.net.nz/thymeleaf/layout"
layout:decorate="~{layout.htm}">
<head>
<title>Open sockets</title>
</head>
<body>
<div layout:fragment="content" class='ProfileIndex'>
<h2>Active sockets <span th:text="${count}">#</span></h2>
<ul>
<li th:each="soc: ${sockets}">
<a th:href="@{~/app/socket/{soc}}" href="#socket"><small th:text="${soc}">socket</small></a>
<span th:text="${soc}">soc</span>
</li>
</ul>
<hr />
</div>
</body>
</html>