{% extends 'base.html' %} {% block content %}

Create New Post

{{ form.hidden_tag() }}
{{ form.category_id.label }}
{{ form.category_id(class="form-control") }}
{{ form.post_name.label }}
{{ form.post_name(class="form-control") }}
{{ form.created_by.label }}
{{ form.created_by(class="form-control") }}
{{ form.text.label }}
{{ form.text(class="form-control") }}
{{ form.media.label }}
{{ form.media(class="form-control-file") }}

Comments

{% if comments %} {% else %}

No comments yet. Be the first to comment!

{% endif %} {% if g.user %}
{% else %}

Log in to leave a comment.

{% endif %}
{% endblock %}