Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Matúš Valko
Online Gaming Management System
Commits
da7959e9
Commit
da7959e9
authored
May 25, 2022
by
Matúš Valko
Browse files
removed ids from views
parent
1dd21c4d
Pipeline
#142601
passed with stage
in 1 minute and 8 seconds
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/match/view.jsp
View file @
da7959e9
...
...
@@ -26,7 +26,6 @@
</thead>
<tbody>
<tr>
<td><c:out
value=
"
${
match
.
id
}
"
/></td>
<td><c:out
value=
"
${
match
.
tournament
}
"
/></td>
<td><c:out
value=
"
${
match
.
teams
}
"
/></td>
<td><c:out
value=
"
${
match
.
players
}
"
/></td>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/player/view.jsp
View file @
da7959e9
...
...
@@ -40,7 +40,6 @@
</thead>
<tbody>
<tr>
<td><c:out
value=
"
${
player
.
id
}
"
/></td>
<td><c:out
value=
"
${
player
.
name
}
"
/></td>
<td><c:out
value=
"
${
player
.
country
}
"
/></td>
<td><c:out
value=
"
${
player
.
team
.
name
}
"
/></td>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/team/view.jsp
View file @
da7959e9
...
...
@@ -19,14 +19,12 @@
</thead>
<tbody>
<tr>
<td><c:out
value=
"
${
team
.
id
}
"
/></td>
<td><c:out
value=
"
${
team
.
name
}
"
/></td>
<td><c:out
value=
"
${
team
.
country
}
"
/></td>
</tr>
<c:forEach
items=
"
${
teamPlayers
}
"
var=
"player"
>
<tr>
<td><c:out
value=
"
${
player
.
id
}
"
/></td>
<td><c:out
value=
"
${
player
.
name
}
"
/></td>
<td><c:out
value=
"
${
player
.
country
}
"
/></td>
</tr>
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment