aswi2022bug-thugs-gitlab/server/templates/teams/teams.html @ 8fd3d7e5
1 |
<html>
|
---|---|
2 |
<head>
|
3 |
<title>Teams Details</title> |
4 |
</head>
|
5 |
<body>
|
6 |
<table>
|
7 |
<TR>
|
8 |
<TH>ID</TH> |
9 |
<TH>Name</TH> |
10 |
</TR>
|
11 |
{% for team in teams %} |
12 |
<TR>
|
13 |
<TD class="ID">{{team.id}}</TD> |
14 |
<TD class="Vendor ID">{{team.name}}</TD> |
15 |
</TR>
|
16 |
{% endfor %} |
17 |
</table>
|
18 |
</body>
|
19 |
</html>
|