this is just a basic port of the tables into django models right now. there's some serious slowness in the state creation that i need to fix before this does anything, but i want to get this in a real database on a real linode before i go too much further, so here it is
17 lines
401 B
HTML
17 lines
401 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}markov import{% endblock %}
|
|
|
|
{% block content %}
|
|
<form id="markov_import_file_form" enctype="multipart/form-data" action="{% url 'markov_import_file' %}" method="post">
|
|
{% csrf_token %}
|
|
<table>
|
|
{{ form }}
|
|
</table>
|
|
<input class="submit-button" type="submit" value="Import"/>
|
|
</form>
|
|
{% endblock %}
|
|
<!--
|
|
vi:tabstop=4:expandtab:autoindent
|
|
-->
|