Chirper
Username:
{{user.username}}
{% csrf_token %}
Your chirps
{% for msg in msgs %}
From {{msg.source.username}} to {{msg.target.username}}
{{msg.content|safe}} {% endfor %}
Send a chirp
{% csrf_token %} To:
{% for user in users %}
{{user.username}}
{% endfor %}