{% extends 'manage/news/master.twig' %} {% from 'macros.twig' import pagination, container_title %} {% block manage_content %}
{{ container_title('News Posts') }} New Post {% for post in news_posts %}

{{ post.post_id }} Cat: {{ post.category_id }} {{ post.post_is_featured }}, {{ post.user_id }}, {{ post.post_title }}, {{ post.post_scheduled }}, {{ post.post_created }}, {{ post.post_updated }}, {{ post.post_deleted }}, {{ post.comment_section_id }}

{% endfor %} {{ pagination(posts_count, posts_take, posts_offset, '?v=categories') }}
{% endblock %}