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
 | |
|  -->
 |