Django 1.8 port: move markov templates to app dir

This commit is contained in:
2015-05-15 08:30:58 -05:00
parent 7b93c7d63c
commit 92bea5f629
5 changed files with 8 additions and 13 deletions

View File

@@ -1,11 +0,0 @@
{% extends 'base.html' %}
{% block title %}context: {{ context.name }}{% endblock %}
{% block content %}
<p>{{ chain }}</p>
<p>in: {{ elapsed }}s</p>
{% endblock %}
<!--
vi:tabstop=4:expandtab:autoindent
-->

View File

@@ -1,16 +0,0 @@
{% 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
-->

View File

@@ -1,16 +0,0 @@
{% 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
-->