{% extends "base.html" %} {% block title %} Knowledge Posts {% endblock %} {% block content %}
New Post

{% for post in posts %} {% endfor %}
Title Author Created Action Review Status
{{ post.title }} {{ post.authors_string }} {{ post.created_at|format_date }} {% if post.webpost_status == 0 %} Private {% elif post.webpost_status == 1 %} In Review {% else %} Published {% endif %}
{% endblock %} {% block scripts %} {{ super() }} {% endblock %}