{% extends "base.html" %} {% block title %}Manage Knowledge Base{% endblock %} {% block page_title %}Knowledge Base Management{% endblock %} {% block content %}
Articles ({{ articles|length }}) New Article
{% if articles %} {% for art in articles %} {% endfor %}
TitleCategoryAuthorPublishedViewsUpdatedActions
{{ 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 }} {{ art.updated_at.strftime('%b %d, %Y') }}
{% else %} {% endif %}
{% endblock %}