summaryrefslogtreecommitdiffstats
path: root/ipawebui/templates/form.kid
blob: 640157005febe250d3827481e62d38a50c77f1d9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version='1.0' encoding='utf-8'?>
<html xmlns:py="http://purl.org/kid/ns#">

<head>
    <title>Hello</title>
</head>

<body>
    <table>
        <tr py:for="param in command.params()">
            <td py:content="param.name"/>
        </tr>
    </table>
</body>

</html>