{% extends "layout.html" %} {% block title %} Edit Stream {% endblock %} {% block content %} {% include "header.html" %} {% if update %} {% endif %}
{{ form.title.label }} {{ form.title(class="form-control") }}
{{ form.category.label }} {{ form.category(class="form-control") }}
{{ form.description.label }} {{ form.description(class="form-control") }}
{{ form.archivable.label }} {{ form.archivable(class="form-check-input") }}
{{ form.unlisted.label }} {{ form.unlisted(class="form-check-input") }}
{% endblock %}