{% extends base.html %} {% block core %}

{{ _("Communication") }}

{{ _("Submit a question") }}

{% comment _("Ask question") %}

{{ _("Questions") }}

{% if current_user.questions != [] %}
{% for msg in current_user.questions %}
{{ Utils.format_time_or_date(msg.question_timestamp) }}
{{ msg.subject }}
{{ msg.text }}
{% if msg.reply_timestamp is not None %}
{{ _("Reply.") }} {{ msg.reply_subject }}
{{ msg.reply_text }}
{% else %}
{{ _("Please wait for reply.") }}
{% end %}
{% end %}
{% else %} {{ _("No questions.") }} {% end %}

{{ _("Messages") }}

{% if current_user.messages != [] %}
{% for msg in current_user.messages %}
{{ Utils.format_time_or_date(msg.timestamp) }}
{{ msg.subject }}
{{ msg.text }}
{% end %}
{% else %} {{ _("No messages.") }} {% end %}
{% end %}