{% extends "base.html" %} {% block title %}{{ _('Support') }}{% endblock %} {% block content %}

{{ _('If you have any questions or need assistance, please contact us at:') }}

{{ _('Github:') }} https://github.com/Michatec/MiniFaceBook/issues

{% if user.is_owner %}
{% endif %}

{{ _('Support') }}

{% for ticket in support_requests %} {% endfor %}
{{ _('Title') }} {{ _('Status') }} {{ _('Created') }}
{{ ticket.title }} {% if ticket.status == 'open' %} {{ _('Open') }} {% else %} {{ _('Closed') }} {% endif %} {{ ticket.created_at.strftime('%Y-%m-%d %H:%M') }} {{ _('View') }}
{% endblock %}