{% block content %} {% endblock %}

Hello, {{current_user.first_name}}!

Educator

Recent Correspondence

{% for post in posts %}

{{ post.author.first_name }} : {{post.body}}

{% endfor %}
{{ form.hidden_tag() }}

{{ form.post.label }}
{{ form.post(cols=32, rows=4) }}
{% for error in form.post.errors %} [{{ error }}] {% endfor %}

{{ form.submit() }}

Show All

Recent Student Queries

{% for query in queries %}

{{ query.author.username }} : {{query.body}}

{% endfor %}
Show All