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

Dashboard

Everything about your Help Center, at a glance.

Open Django Admin

Articles

{{ total_articles }}

{{ published_count }} published · {{ draft_count }} draft

Categories

{{ total_categories }}

Used to organize articles

Feedback

{% if helpful_rate is not None %}{{ helpful_rate }}%{% else %}—{% endif %}

{% if total_feedback %}found helpful ({{ total_feedback }} responses){% else %}no responses yet{% endif %}

Announcements

{{ active_announcements|length }}

Currently active

Quick actions

Recent articles

View all
{% if recent_articles %} {% else %}

No articles yet.

{% endif %}

Active announcements

Manage
{% if active_announcements %}
    {% for item in active_announcements %}
  • {{ item.title }}

    {{ item.get_level_display }}
  • {% endfor %}
{% else %}

Nothing active right now.

{% endif %}

Recent feedback

View all
{% if recent_feedback %}
    {% for entry in recent_feedback %}
  • {{ entry.article.title }}

    {% if entry.was_helpful %}Helpful{% else %}Not helpful{% endif %}
    {% if entry.comment %}

    {{ entry.comment }}

    {% endif %}
  • {% endfor %}
{% else %}

No feedback submitted yet.

{% endif %}
{% endblock %}