{% extends "helpapp/base_help.html" %} {% block title %}{{ article.title }} — {{ helpapp_brand_name|default:"Help Center" }}{% endblock %} {% block content %}
{% if article.category %} {{ article.category.name }} {% endif %}

{{ article.title }}

Verified
{% if article.updated_at %}
Updated {{ article.updated_at|date:"M j, Y" }}
{% endif %}
{{ article.body_froala|safe }}
{% if article.tags.all %}

Related Topics

{% for tag in article.tags.all %} #{{ tag.name }} {% endfor %}
{% endif %}

Was this article helpful?

Your feedback helps us improve the documentation and provide better guidance for everyone.

Still need help?

Browse more articles or search for another topic.

{% endblock %}