Commit f629eae4 authored by Vladimír Štill's avatar Vladimír Štill
Browse files

evalweb: Clean convert result

parent d615b929
Loading
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
<h3>Vygenerovaný řetězec pro odpovědník</h3>
<pre>
Zkonstruujte {{student_type_string|default(task)}}…
 :e1a___
:e1a="d:?{{is_task}}"</pre>
+1 −7
Original line number Diff line number Diff line
@@ -147,11 +147,5 @@ function toggleDFA(dfa){
</script>

<br><br><br><br><br>
<div style="margin:10px 30px;">
    <h3>Vygenerovaný řetězec pro odpovědník</h3>
    <pre>
Zkonstruujte {{student_type_string}}…
 :e1a___
:e1a="d:?{{is_task}}"</pre>
    </div>
    {% include "genodp.html" %}
{% endblock %}
+13 −14
Original line number Diff line number Diff line
@@ -5,18 +5,17 @@
{% endblock %}

{% block content %}
    <br>
    <label for="student_string">Můj vstup</label>
    <br>
    <textarea style="width:400px;" name="student_string" id="student_string">{{ student_string }}</textarea>
    {{ student_type }}, převod na {{ task }}

    <br><br>
    <label for="output">Výsledek</label>
    <br>
    <textarea style="width:400px;" name="output" id="output">{{ output }}</textarea>
    <br>
    <br>
    <h3>Vygenerovaný řetězec pro odpovědník</h3>
    {{ is_task }}
    <p>
        Vstupní {{student_type}}:
        <pre>
        {{- student_string -}}
        </pre>
    </p>
    <p>
        Výsledek převodu na {{task}}
        <pre>
        {{- output -}}
        </pre>
    </p>
    {% include "genodp.html" %}
{% endblock %}