PonyConf/conversations/templates/conversations/inbox.html

19 lines
388 B
HTML
Raw Normal View History

2016-11-12 12:56:21 +00:00
{% extends 'base.html' %}
2016-06-14 21:58:04 +00:00
2016-07-23 10:03:12 +00:00
{% load i18n %}
2016-06-14 21:58:04 +00:00
{% block inboxtab %} class="active"{% endblock %}
2016-11-12 12:56:21 +00:00
{% block content %}
<h1>{% trans "Messaging" %}</h1>
2016-07-23 10:03:12 +00:00
<p>{% trans "You can use this page to communicate with the staff." %}</p>
2016-06-14 21:58:04 +00:00
2016-11-12 12:56:21 +00:00
{% for message in message_list %}
{% include 'conversations/_message_detail.html' %}
{% endfor %}
{% include 'conversations/_message_form.html' %}
{% endblock %}