Projekt

Obecné

Profil

Stáhnout (308 Bajtů) Statistiky
| Větev: | Tag: | Revize:
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>
    (1-1/1)