{% extends "templates/web.html" %} {% block title %} {{ _("Help") }} {% endblock %} {% block header %}

{{ _("Help") }}

{% for section in get_started_sections %}

{{ section["name"] }}

{% for item in section["items"] %}
{{ item.title }} {% if item.description -%}

{{ item.description }}

{%- endif %}
{% endfor %}

{{ _("See All Articles") }}


{% endfor %}

{{ _("Forum Activity") }}

{% for topic in topics %}
{{ topic[post_params.title] }} {% if topic[post_params.description] -%}

{{ topic[post_params.description] }}

{%- endif %}
{% endfor %}

{{ _("Visit the forums") }}


{% if issues | len > 0 -%}

{{ _("Your tickets") }}

{% for doc in issues %} {% include "templates/includes/issue_row.html" %} {% endfor %}

{{ _("See all open tickets") }}

{{ _("Open a new ticket") }} {%- endif %} {% endblock %}