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