Subversion Repositories navi

Rev

Rev 59 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
58 szabot 1
{% extends "base.html" %}
2
 
3
{% block title %}Number parser{% end %}
4
 
5
{% block body %}
6
<b>Na'vi word:</b><br />
7
<form action="/parse" method="post">
8
<input id="word" name="word" type="text" value="{{last}}" style="width: 100%;" />
9
<input name="btn" type="submit" value="Parse!" />
10
</form>
11
{% if type(out) == list %}
12
{{ out[0][1]}} <br />
13
{{ out[1]}} <br />
14
{{ out[2]}} <br />
15
{{ out[3]}}
16
{% end %}
17
<script type="text/javascript">
18
document.getElementById("word").focus();
19
</script>
20
{% end %}