17 lines
		
	
	
		
			367 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			367 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
 | 
						|
{% block title %}markov teach{% endblock %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<form id="markov_teach_line_form" action="{% url 'markov_teach_line' %}" method="post">
 | 
						|
  {% csrf_token %}
 | 
						|
  <table>
 | 
						|
    {{ form }}
 | 
						|
  </table>
 | 
						|
  <input class="submit-button" type="submit" value="Teach"/>
 | 
						|
</form>
 | 
						|
{% endblock %}
 | 
						|
<!--
 | 
						|
    vi:tabstop=4:expandtab:autoindent
 | 
						|
 -->
 |