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

New Knowledge Post    
{% if status > 0 %} {% endif %}












View:
{% 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 %}