{% extends "base.html" %} {% block title %}Manage Knowledge Base{% endblock %} {% block page_title %}Knowledge Base Management{% endblock %} {% block content %}
| Title | Category | Author | Published | Views | π / π | Updated | Actions |
|---|---|---|---|---|---|---|---|
| {{ 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') }} |