{% block body %} <b>Na'vi word:</b><br/> <formaction="/parse2"method="post"> <inputid="word"name="word"type="text"value="{{last}}"style="width: 100%;"/> <inputname="btn"type="submit"value="Parse!"/> </form>
{{ out }} <tableborder="1"> <tr> <th>Words>/th> <th>Parts</th> <th>Data</th> </tr>
{% for wor in out %} <tr> <td>{{ wor["word"]["navi"] }} rowspan="3</td> <td>Infixes:</td> <td>u", ".join(wor["inf"])</td> </tr> <tr> <td>Prefixes:</td> <td>u"; ".join(u", ".join(x) for x in wor["pref"])</td> </tr> <tr> <td>Postfixes:</td> <td>u"; ".join(u", ".join(x) for x in wor["post"])</td> </tr>
{% end %} </table> <scripttype="text/javascript">
document.getElementById("word").focus(); </script>
{% end %}