Rev 57 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed
| Rev | Author | Line No. | Line |
|---|---|---|---|
| 58 | szabot | 1 | {% extends "base.html" %} |
| 2 | |||
| 62 | szabot | 3 | {% block title %}Word parser{% end %} |
| 58 | szabot | 4 | |
| 5 | {% block body %} |
||
| 6 | <b>Na'vi word:</b><br /> |
||
| 59 | szabot | 7 | <form action="/parse2" method="post"> |
| 58 | szabot | 8 | <input id="word" name="word" type="text" value="{{last}}" style="width: 100%;" /> |
| 9 | <input name="btn" type="submit" value="Parse!" /> |
||
| 10 | </form> |
||
| 65 | szabot | 11 | {{ out }} |
| 58 | szabot | 12 | <script type="text/javascript"> |
| 13 | document.getElementById("word").focus(); |
||
| 14 | </script> |
||
| 15 | {% end %} |