misuzu/templates/manage/news/posts.twig

28 lines
1 KiB
Twig
Raw Normal View History

{% extends 'manage/news/master.twig' %}
2018-10-22 19:53:21 +00:00
{% from 'macros.twig' import pagination, container_title %}
{% block manage_content %}
<div class="container">
2018-10-22 19:53:21 +00:00
{{ container_title('News Posts') }}
2019-06-09 22:10:59 +00:00
<a href="{{ url('manage-news-post') }}" class="input__button">New Post</a>
{% for post in news_posts %}
<p>
2019-06-09 22:10:59 +00:00
<a href="{{ url('manage-news-post', {'post': post.post_id}) }}" class="input__button">{{ post.post_id }}</a>
<a href="{{ url('manage-news-category', {'category': post.category_id}) }}" class="input__button">Cat: {{ post.category_id }}</a>
{{ 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 }}
</p>
{% endfor %}
2019-06-09 22:10:59 +00:00
{{ pagination(posts_pagination, url('manage-news-posts')) }}
</div>
{% endblock %}