12345678910111213141516171819202122232425 |
- {% import "components/components.html" as components %}
-
- <html>
- <head></head>
- <body>
- {{ components.textarea('test', value='ceci est un test', rows=10, cols=20) }}<br/>
- URL arg : id = {{ id }}<br />
- GET values :<br />
- <ul>
- {% for argument_name, argument_value in params.items() %}
- <li>{{argument_name}} = {{ argument_value }}</li>
- {% endfor %}
- </ul>
- <form action="http://localhost:9090/admin?r=1&rand[]=7&rand[]=5" method="POST" enctype="multipart/form-data">
- <input type="text" name="re[]" value="3"><br />
- <input type="text" name="re[]" value="1"><br />
- <input type="text" name="val" value="8"><br />
- <input type="file" name="myfile1"><br />
- <input type="file" name="myfile2"><br />
- <input type="file" name="myfiles[]"><br />
- <input type="file" name="myfiles[]"><br />
- <input type="submit" value="tester"><br />
- </form>
- </body>
- </html>
|