{% extends "base.html" %} {% block title %}Manage Knowledge Base{% endblock %} {% block page_title %}Knowledge Base Management{% endblock %} {% block content %}
{% if q or sel_category or sel_author_id or sel_published %} Clear {% endif %}
Articles ({{ articles|length }} result{{ 's' if articles|length != 1 }}) New Article
{% if articles %} {% for art in articles %} {% endfor %}
TitleCategoryAuthorPublishedViewsπŸ‘ / πŸ‘ŽUpdatedActions
{{ art.title[:60] }} {{ art.category or 'β€”' }} {{ art.author.full_name if art.author else 'β€”' }} {% if art.is_published %} Yes {% else %} Draft {% endif %} {{ art.view_count }} {% set hc = art.feedback.filter_by(is_helpful=True).count() %} {% set nc = art.feedback.filter_by(is_helpful=False).count() %} πŸ‘ {{ hc }} / πŸ‘Ž {{ nc }} {{ art.updated_at.strftime('%b %d, %Y') }}
{% if art.is_published %} {% else %} {% endif %}
{% else %}
{% if q or sel_category or sel_author_id or sel_published %} No articles match your filters. Clear filters {% else %} No articles yet. Create your first article β†’ {% endif %}
{% endif %}
{% endblock %}