misuzu/templates/manage/news/categories.twig

22 lines
731 B
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('Categories') }}
2019-06-09 22:10:59 +00:00
<a href="{{ url('manage-news-category') }}" class="input__button">New Category</a>
{% for cat in news_categories %}
<p>
<a href="{{ url('manage-news-category', {'category': cat.id}) }}" class="input__button">{{ cat.id }}</a>
{{ cat.name }},
{{ cat.isHidden }},
{{ cat.createdTime|date('r') }}
</p>
{% endfor %}
2019-06-09 22:10:59 +00:00
{{ pagination(categories_pagination, url('manage-news-categories')) }}
</div>
{% endblock %}