{% extends "base.html" %} {% block content %} Create Group {{ form.groupname(placeholder="Group name")}} {% if form.groupname.errors %} {% for error in form.groupname.errors %} {{ error }} {% endfor %} {% endif %} {{ form.description(placeholder="Description") }} {% if form.description.errors %} {% for error in form.description.errors %} {{ error }} {% endfor %} {% endif %} {{ form.csrf_token }} {{ form.author }} Create group as {{active_persona.username}} {% for p in controlled_personas %} {{p.username}} {% endfor %} {% endblock %}