38 lines
1.2 KiB
Twig
38 lines
1.2 KiB
Twig
|
|
{% extends 'brain/base.html.twig' %}
|
||
|
|
|
||
|
|
{% block title %}Posts {% endblock %}
|
||
|
|
|
||
|
|
{% block page_title %}<h1>All Posts</h1>{% endblock %}
|
||
|
|
|
||
|
|
{# {% block actions%}Actions here{% endblock %} #}
|
||
|
|
|
||
|
|
{% block admin %}
|
||
|
|
<div class="list">
|
||
|
|
<h2><a href="/brain/post/new">New Post</a></h2>
|
||
|
|
<table class="posts">
|
||
|
|
<thead>
|
||
|
|
<tr>
|
||
|
|
<td>Title</td>
|
||
|
|
<td>Date</td>
|
||
|
|
<td>Category</td>
|
||
|
|
<td>Edit</td>
|
||
|
|
<td>View</td>
|
||
|
|
<td>Published</td>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
{% for post in posts %}
|
||
|
|
<tr>
|
||
|
|
<td>{{post.title}}</td>
|
||
|
|
<td>{{post.getDate()|date('m/d/Y')}}</td>
|
||
|
|
<td>{{post.category.getTitle()}}</td>
|
||
|
|
<td><a href="/brain/post/edit/{{post.getId()}}">Edit</a></td>
|
||
|
|
<td><a href="/words/{{post.getUrl()}}">View</a><td>
|
||
|
|
<td>{{post.published == 1 ? 'Published' : 'Unpublished'}}</td>
|
||
|
|
</tr>
|
||
|
|
{% endfor %}
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
{% endblock %}
|