collapsing all of dr_botzo one directory
This commit is contained in:
8
markov/templates/markov/context.html
Normal file
8
markov/templates/markov/context.html
Normal file
@@ -0,0 +1,8 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}context: {{ context.name }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<p>{{ chain }}</p>
|
||||
<p>in: {{ elapsed }}s</p>
|
||||
{% endblock %}
|
||||
15
markov/templates/markov/import_file.html
Normal file
15
markov/templates/markov/import_file.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends 'adminplus/index.html' %}
|
||||
|
||||
{% block title %}Markov - Import log file{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div id="content-main">
|
||||
<form id="markov_import_file_form" enctype="multipart/form-data" action="{% url 'admin:markov_import_file' %}" method="post">
|
||||
{% csrf_token %}
|
||||
<table>
|
||||
{{ form }}
|
||||
</table>
|
||||
<input class="submit-button" type="submit" value="Import"/>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
15
markov/templates/markov/teach_line.html
Normal file
15
markov/templates/markov/teach_line.html
Normal file
@@ -0,0 +1,15 @@
|
||||
{% extends 'adminplus/index.html' %}
|
||||
|
||||
{% block title %}Markov - Teach line{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div id="content-main">
|
||||
<form id="markov_teach_line_form" action="{% url 'admin:markov_teach_line' %}" method="post">
|
||||
{% csrf_token %}
|
||||
<table>
|
||||
{{ form }}
|
||||
</table>
|
||||
<input class="submit-button" type="submit" value="Teach"/>
|
||||
</form>
|
||||
</div>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user