-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from AI-SIP/develop
Develop
- Loading branch information
Showing
5 changed files
with
14 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,9 +41,10 @@ <h1 class="mb-4">유저 상세 정보</h1> | |
<div class="card-body"> | ||
<table class="table user-details-table"> | ||
<tr> | ||
<th>ID</th> | ||
<th>User ID</th> | ||
<td th:text="${user.userId}">1</td> | ||
</tr> | ||
<!-- | ||
<tr> | ||
<th>이름</th> | ||
<td th:text="${user.userName}">User Name</td> | ||
|
@@ -52,6 +53,7 @@ <h1 class="mb-4">유저 상세 정보</h1> | |
<th>이메일</th> | ||
<td th:text="${user.userEmail}">[email protected]</td> | ||
</tr> | ||
--> | ||
<tr> | ||
<th>식별자</th> | ||
<td th:text="${user.userIdentifier}">identifier</td> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,9 +17,11 @@ <h1>전체 유저 목록</h1> | |
<table class="table table-striped"> | ||
<thead> | ||
<tr> | ||
<th scope="col">ID</th> | ||
<th scope="col">User ID</th> | ||
<!-- | ||
<th scope="col">이름</th> | ||
<th scope="col">이메일</th> | ||
--> | ||
<th scope="col">식별자</th> | ||
<th scope="col">유저 유형</th> | ||
<th scope="col">문제 수</th> | ||
|
@@ -30,8 +32,10 @@ <h1>전체 유저 목록</h1> | |
<tbody> | ||
<tr th:each="user, stat : ${users}"> | ||
<td><a th:href="@{/admin/user/{userId}(userId=${user.userId})}" th:text="${user.userId}">1</a></td> | ||
<!-- | ||
<td th:text="${user.userName}">User Name</td> | ||
<td th:text="${user.userEmail}">[email protected]</td> | ||
--> | ||
<td th:text="${user.userIdentifier}">identifier</td> | ||
<td th:text="${user.userType}">GUEST</td> | ||
<td th:text="${problemCounts[stat.index]}"></td> | ||
|