32 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			No EOL
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
<!DOCTYPE html>
 | 
						|
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
 | 
						|
 | 
						|
<head>
 | 
						|
    <title>Marinesco - Manage users</title>
 | 
						|
    <link rel="icon" type="image/x-icon" href="/favicon.ico">
 | 
						|
    <link rel="stylesheet" th:href="@{/styles/styles.css}" />
 | 
						|
</head>
 | 
						|
 | 
						|
<body>
 | 
						|
    <div th:replace="~{fragments/header :: 'header'}"></div>
 | 
						|
    <h1 th:text="${header_text}"></h1>
 | 
						|
    <p>
 | 
						|
    <div th:each="user : ${USR}">
 | 
						|
        <span th:text="${user.id+' '+user.name+' '+user.displayName}+' ROLES: '">user</span>
 | 
						|
        <span th:each="role : ${user.role}">
 | 
						|
            <span th:text="'[ '+${role.id+' '+role.name+' '+role.type}+' ]'">user</span>
 | 
						|
        </span>
 | 
						|
        <form method="POST" th:action="@{/manage_users/delete}" th:object="${userGenerified}">
 | 
						|
            <input type="hidden" th:value="${user.id}" name="id" />
 | 
						|
            <input type="hidden" th:value="${user.name}"  name="name" />
 | 
						|
            <input type="hidden" th:value="${user.displayName}"  name="displayName"  />
 | 
						|
            <span th:each="role : ${user.role}">
 | 
						|
                <input type="hidden" th:value="${role.id}" th:attr="name='role'"  /> 
 | 
						|
            </span>
 | 
						|
        
 | 
						|
            <button>DELETE</button>
 | 
						|
        </form>
 | 
						|
        <br />
 | 
						|
    </div>
 | 
						|
</body>
 | 
						|
</html> |