Django 1.8 port: move markov templates to app dir
This commit is contained in:
@@ -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
|
||||
-->
|
||||
@@ -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
|
||||
-->
|
||||
@@ -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
|
||||
-->
|
||||
Reference in New Issue
Block a user