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
93bada61
Commit
93bada61
authored
May 25, 2022
by
Matúš Valko
Browse files
removed ids from views fixed showing still id
parent
da7959e9
Pipeline
#142611
passed with stage
in 1 minute and 6 seconds
Changes
8
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/match/list.jsp
View file @
93bada61
...
...
@@ -18,7 +18,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
ID
</th>
<th>
Tournament
</th>
<th>
Teams
</th>
<th>
Players
</th>
...
...
@@ -27,7 +26,6 @@
<tbody>
<c:forEach
items=
"
${
matches
}
"
var=
"match"
>
<tr>
<td>
${match.id}
</td>
<td><c:out
value=
"
${
match
.
tournament
.
city
}
"
/></td>
<td><c:out
value=
"
${
match
.
teams
.
toArray
()
}
"
/></td>
<td><c:out
value=
"
${
match
.
playerList
.
toArray
()
}
"
/></td>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/match/view.jsp
View file @
93bada61
...
...
@@ -18,7 +18,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
ID
</th>
<th>
Tournament
</th>
<th>
Teams
</th>
<th>
Players
</th>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/player/list.jsp
View file @
93bada61
...
...
@@ -18,7 +18,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
country
</th>
<th>
team
</th>
...
...
@@ -30,7 +29,6 @@
<tbody>
<c:forEach
items=
"
${
players
}
"
var=
"player"
>
<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/player/view.jsp
View file @
93bada61
...
...
@@ -29,7 +29,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
country
</th>
<th>
team
</th>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/team/list.jsp
View file @
93bada61
...
...
@@ -18,7 +18,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
country
</th>
</tr>
...
...
@@ -26,7 +25,6 @@
<tbody>
<c:forEach
items=
"
${
teams
}
"
var=
"team"
>
<tr>
<td><c:out
value=
"
${
team
.
id
}
"
/></td>
<td><c:out
value=
"
${
team
.
name
}
"
/></td>
<td><c:out
value=
"
${
team
.
country
}
"
/></td>
<td>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/team/view.jsp
View file @
93bada61
...
...
@@ -12,7 +12,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
country
</th>
</tr>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/tournament/list.jsp
View file @
93bada61
...
...
@@ -18,7 +18,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
city
</th>
<th>
country
</th>
...
...
gaming-spring-mvc/src/main/webapp/WEB-INF/jsp/tournament/view.jsp
View file @
93bada61
...
...
@@ -18,7 +18,6 @@
<table
class=
"table"
>
<thead>
<tr>
<th>
id
</th>
<th>
name
</th>
<th>
city
</th>
<th>
county
</th>
...
...
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