{% extends "base.html" %} {% block title %}{{ article.title }}{% endblock %} {% block page_title %}Knowledge Base{% endblock %} {% block content %}
Article {% if current_user.is_it_staff %} Edit {% endif %}

{{ article.title }}

{% if article.category %}{{ article.category.replace('_',' ').title() }}{% endif %} {{ article.author.full_name if article.author else 'IT Team' }} {{ article.updated_at.strftime('%B %d, %Y') }} {{ article.view_count }} views
{% if article.tags %}
{% for tag in article.tags.split(',') %} {{ tag.strip() }} {% endfor %}
{% endif %}
{{ article.body }}
Did this article solve your issue?
{% endblock %}