{% extends "base.html" %} {% load i18n %} {% load crispy_forms_tags %} {% block title %} {% trans "Support request" %} {% endblock title %} {% block content %}

{% trans "Support request" %}

{% block support_form %} {# TODO this is a check for our commercial hosting, we should do something different here #} {% if USE_ORGANIZATIONS %}

We're here to help make sure you get the most out of Read the Docs. Feel free to ask us any questions you have about getting set up, or let us know if there is an issue with the service.

You can always check out our documentation as well. It contains a number of answers to common questions and helps you understand the features on our site a bit more.

{% else %}

Usage questions

If you have questions about how to use Read the Docs, or have an issue that isn't related to a bug, Stack Overflow is the best place to ask. Tag questions with read-the-docs so other folks can find them easily.

You might also find the answers you are looking for in our documentation guides. These provide step-by-step solutions to common user requirements.

Bug reports

If you have an issue with the actual functioning of the site, you can file bug reports on our GitHub issue tracker. You can also contribute to Read the Docs, as the code is open source.

Commercial support

We offer commercial support for Read the Docs and commercial hosting with Read the Docs for Business. We have a dedicated team that responds to support requests during business hours.

User support

If you need a specific request for your project or account, like more resources, change of the project's slug or username.

{% endif %} {% if not SUPPORT_FORM_ENDPOINT %}

Please send an email to {{ SUPPORT_EMAIL }} and we will get back to you as soon as possible.

{% else %}

Fill out the form below, and we will get back to you as soon as possible.

{{ form|crispy }}
{% endif %} {% endblock support_form %} {% endblock content %}