You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>99乘法表</title>
|
|
</head>
|
|
<body>
|
|
{% for row in table %}
|
|
<ul>{{ row.0 }} {{ row.1 }} {{ row.2 }} {{ row.3 }} {{ row.4 }} {{ row.5 }} {{ row.6 }} {{ row.7 }} {{ row.8 }} {{ row.9 }} </ul>
|
|
|
|
{% endfor %}
|
|
|
|
</body>
|
|
</html> |