{% extends "helpapp/base_help.html" %} {% load helpapp_extras %} {% block title %}{{ helpapp_brand_name|default:"Help Center" }}{% endblock %} {% block content %}
{{ helpapp_brand_name|default:"Help Center" }}

How can we help?

Search documentation, browse guides, and find answers in seconds.

{% if query %} {% include "helpapp/partials/search_results.html" %} {% endif %}
{% if not query %}

Browse Categories

Explore documentation organized by topic.

{% for category in categories %}

{{ category.name }}

Knowledge Base

{% with articles=category.articles.all|visible_articles:visible_ids %} {% endwith %}
{% empty %}

No Help Articles Yet

Populate your knowledge base by loading the demo content.

python manage.py seed_helpapp_demo
{% endfor %}
{% endif %} {% endblock %}