tetawebapp/tetawebapp/templates/inputs.html

42 lines
1.4 KiB
HTML

{% extends "index.html" %}
{% block main %}
<article class='right'>
<h3>The input collection</h3>
<p>
Have a look to the input collection:
</p>
<input type='text'/>
<button>Click me</button>
<br/>
<textarea cols='25'></textarea>
<br/>
<select>
{% for item in menu %}
<option>{{ item[0] }}</option>
{% endfor %}
</select>
<input type='submit' value='Click me too'/>
<br/>
<input type='button' value='And me !' />
<br/>
<input type='image' src='/static/images/add.png' title='add' alt='add'/>
<input type='image' src='/static/images/edit.png' title='edit' alt='edit'/>
<input type='image' src='/static/images/login.png' title='login' alt='login'/>
<input type='image' src='/static/images/logout.png' title='logout' alt='logout'/>
<input type='image' src='/static/images/refresh.png' title='refresh' alt='refresh'/>
<input type='image' src='/static/images/save.png' title='save' alt='save'/>
<input type='image' src='/static/images/search.png' title='search' alt='search'/>
<input type='image' src='/static/images/trash.png' title='trash' alt='trash'/>
<br/>
<pre>
#!/bin/sh
# This is code sample
while [ 1 ]
do
echo "Tits or GTFO !"
sleep .1
done
</pre>
</article>
{% endblock %}