{% from 'products/includes/topic_macros.html' import help_topics with context %} {% from 'includes/common_macros.html' import featured_articles, scam_banner %} {% macro select_product(products) -%}

{{ _('Contact Support') }}

{{ _('Which product do you need help with?') }}

{% for product in products %}
{{ pgettext('DB: products.Product.title', product.title) }}

{{ product.title }}

{{ product.description }}

{% endfor %}
{%- endmacro %} {% macro progress_bar(step, product_slug=None) %} {%- endmacro %} {% macro aaq_widget(request, location="aaq", topic=None) %} {% set aaq_context = request.session.get("aaq_context") %}

{{ _('Ask a Question') }}

{% set link_detail = aaq_context.product_slug if aaq_context else topic %} {% set has_support = aaq_context.has_ticketing_support if aaq_context else False %} {% set has_forum = aaq_context.has_public_forum if aaq_context else False %} {% set multiple_products = aaq_context.multiple_products if aaq_context else False %} {% if aaq_context %} {% if request.user.is_authenticated %} {% if has_support %}

{{ _('Still need help? Continue to contact our support team.') }}

{% else %}

{{ _('Still need help? Continue to ask your question on our forums.') }}

{% endif %} {% else %} {% if has_support %}

{{ _('Still need help? Sign in to contact our support team.') }}

{% else %}

{{ _('Still need help? Sign in to ask your question on our forums.') }}

{% endif %} {% endif %} {% else %}

{{ _('Still need help? Continue to ask your question and get help.') }}

{% endif %} {% set link_name = "aaq-widget.community-support.kb-article" if not (has_support or has_forum) else "aaq-widget.aaq-step-3" %} {% set next_step = url('wiki.document', 'get-community-support')|urlparams(exit_aaq=1) if not (has_support or has_forum or topic) else url('questions.aaq_step3', product_slug=aaq_context.product_slug) if aaq_context and not multiple_products else url('questions.aaq_step1') %} {{ _('Continue')}}
{%- endmacro %} {% macro explore_solutions(product, search_box, featured, topics, has_ticketing_support=True) -%} {% set search_params = {'product': product.slug} %}
{{ progress_bar(2) }} {% if not has_ticketing_support %} {{ scam_banner() }} {% endif %}
{% if featured %}

{{ _('Featured Articles') }}

{{ featured_articles(articles=featured, new_tab=True) }}
{% endif %}
{{ help_topics(topics, product_slug=product.slug, new_tab=True) }}
{%- endmacro %} {% macro troubleshooting_instructions(field) %}

{% trans %} We can't automatically get your browser's troubleshooting data, please try these manual steps. {% endtrans %}

{{ field }}

{{ _('This information gives details about the internal workings of your browser that will help in answering your question.') }}

{% endmacro %}