{% extends 'tickets/layout.html' %} {% load i18n %} {% load staticfiles %} {% block tickets_content %}

{% trans 'Support' %}

{% url 'chat' as chat_url %}

{% trans 'Before creating a ticket, please check if you question is convered in' %} {% trans 'the FAQ' %}.

{% blocktrans trimmed with chat_url as chat_url %} If you would prefer to talk us in real time, we have a live chat.
You can also use your own IRC client on #ccrypto on chat.freenode.net. We are however not always online and you may have to wait. {% endblocktrans %}

{% if tickets %}

{% trans 'Your open tickets' %}

{% for ticket in tickets %} {% endfor %}
#{% trans 'ID' %} {% trans 'Subject' %} {% trans 'Status' %}
#{{ticket.id}} {{ ticket.subject }} {{ ticket.status_text }}
{% if tickets.has_previous or tickets.has_next %}

{% if tickets.has_previous %} < {% endif %} {{ tickets.number }} {% if tickets.has_next %} > {% endif %}

{% endif %} {% endif %} {% endblock %}