{% extends "bootstrap/base.html" %} {% import "bootstrap/wtf.html" as wtfm %} {% block title %} {{ title }} {% endblock %} {% block styles %} {{ super() }} {% endblock %} {% block content %}

{{ name }}: {{ name_meaning }}

{% if about %}

About {{ name }}: See Below


{% endif %}

Inputs

Note: Uploaded files are limited in size to {{ max_file_size }} MB each.

Byte Stream Example:
F?iamadKul!FYnvXe0x}2|Q8~!vmgRl!P!OhbaA<aWn=-V_-A}Mq^+=X#oDN(G&
(Copy and paste into Byte Stream text area, then convert to piecewise-constant array)

{{ form.hidden_tag() }} {{ wtfm.form_errors(form, hiddens="only") }}
{{ form.array.label }} {{ form.array() }}
{{ form.stream.label }} {{ form.stream() }}
{{ wtfm.form_field(form.submit_to_str) }}
{{ wtfm.form_field(form.submit_to_ary) }}
{% if form.errors %}
{% for field, errors in form.errors.items() %}

{{ form[field].label }}: {{ ', '.join(errors) }}

{% endfor %} {% endif %}
{% if outputs %}

Results

{{ outputs | safe }} {{ data_management | safe }} {% endif %} {% if about %}

About {{ name }}

{{ about | safe }} {% endif %}
{% endblock %}