2018-10-11 21:43:52 +00:00
|
|
|
{% extends 'manage/news/master.twig' %}
|
2018-10-22 19:53:21 +00:00
|
|
|
{% from 'macros.twig' import pagination, container_title %}
|
2018-10-11 21:43:52 +00:00
|
|
|
|
|
|
|
{% block manage_content %}
|
2018-10-22 17:26:59 +00:00
|
|
|
<div class="container">
|
2018-10-22 19:53:21 +00:00
|
|
|
{{ container_title('Categories') }}
|
2018-10-11 21:43:52 +00:00
|
|
|
|
2019-01-24 20:54:24 +00:00
|
|
|
<a href="{{ url('manage-news-category-create') }}" class="input__button">New Category</a>
|
2018-10-11 21:43:52 +00:00
|
|
|
|
|
|
|
{% for cat in news_categories %}
|
|
|
|
<p>
|
2019-01-24 20:54:24 +00:00
|
|
|
<a href="{{ url('manage-news-category-edit', {'category': cat.category_id}) }}" class="input__button">{{ cat.category_id }}</a>
|
2018-10-11 21:43:52 +00:00
|
|
|
{{ cat.category_name }},
|
|
|
|
{{ cat.category_is_hidden }},
|
|
|
|
{{ cat.category_created }}
|
|
|
|
</p>
|
|
|
|
{% endfor %}
|
|
|
|
|
2019-01-03 00:33:02 +00:00
|
|
|
{{ pagination(categories_pagination, '/manage/news.php', null, {'v': 'categories'}) }}
|
2018-10-11 21:43:52 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|