{% extends "base.html" %} {% block style_links %} {% endblock %} {% block title %} Knowledge {% endblock %} {% block content %} {{ super() }}

{{ path if path else 'New Knowledge Post' }}
{% if status > 0 %} {% endif %}

{% include 'post_editor_review_modal.html' %}
{% block metadata_fields %} {% if not path %}
{% endif %}








{% endblock %}
{% block render_block %} {% endblock %}
{% if status == 1 %}

{{ comments | length }} Comments


{% for item in comments %} {% set messageId = item.id %}
Posted by {{ item.author }} on {{ item.created_at_fmt }}

{{ item.text|safe }}


{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {{ super() }} {% endblock %}