student.html 438 Bytes
Newer Older
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
1 2 3 4 5 6 7 8 9 10
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Old Boy EDU</title>
</head>
<body>
Welcome to Old Boy EDU
{{params.a}}{{params.b}}
<div>{{ student }}</div>
11
<table border="1xp" bgcolor="blue">
pengxiong@wealthgrow.cn's avatar
pengxiong@wealthgrow.cn committed
12 13 14 15 16 17 18 19 20 21
    {% for foo in student %}
        <tr>
            <td>{{ foo.name }}</td>
            <td>{{ foo.get("age") }}</td>
            <td>{{ foo["gender"] }}</td>
        </tr>
    {% endfor %}
</table>
</body>
</html>