PonyConf/conversations/templates/conversations/conversation.html

18 lines
414 B
HTML
Raw Normal View History

2016-11-12 12:56:21 +00:00
{% extends 'staff.html' %}
2016-06-14 19:39:04 +00:00
2016-07-23 10:03:12 +00:00
{% load i18n %}
2016-11-12 12:56:21 +00:00
{% block correspondentstab %} class="active"{% endblock %}
2016-06-14 19:39:04 +00:00
{% block content %}
2016-11-12 12:56:21 +00:00
<h1>{% blocktrans with correspondent=correspondent.profile %}Conversation with {{ correspondent }}{% endblocktrans %}</h1>
2016-06-14 19:39:04 +00:00
{% for message in message_list %}
{% include 'conversations/_message_detail.html' %}
2016-06-14 19:39:04 +00:00
{% endfor %}
{% include 'conversations/_message_form.html' %}
2016-06-14 19:39:04 +00:00
{% endblock %}