kekrozsak/src/KekRozsak/FrontBundle/Resources/views/Forum/topicList.html.twig

37 lines
1.0 KiB
Twig
Raw Normal View History

{# vim: ft=htmljinja
#}
{% extends 'KekRozsakFrontBundle:Default:main_template.html.twig' %}
{% block title %} - Fórum - {{ topicGroup.title }}{% endblock %}
{% block content %}
<h3><a href="{{ path('KekRozsakFrontBundle_forumTopicGroupList') }}">Fórum</a> - {{ topicGroup.title }}</h3>
{% if topicGroup.topics|length > 0 %}
2012-07-07 10:12:33 +00:00
<table class="forum-lista">
<thead>
2012-07-07 10:12:33 +00:00
<tr>
<td></td>
2012-07-13 11:53:41 +00:00
<td>Hozzászólások száma</td>
<td>Utolsó hozzászólás</td>
2012-07-07 10:12:33 +00:00
</tr>
</thead>
<tbody>
{% for topic in topicGroup.topics %}
2012-07-07 10:12:33 +00:00
<tr class="{{ cycle(['odd', 'even'], loop.index0) }}">
<td><a href="{{ path('KekRozsakFrontBundle_forumPostList', { topicGroupSlug: topicGroup.slug, topicSlug: topic.slug }) }}">{{ topic.title }}</a></td>
2012-07-13 11:53:41 +00:00
<td></td>
<td>
{% if topic.lastPost %}
{{ topic.lastPost.createdBy|userdataspan }}<br />
2012-07-13 11:53:41 +00:00
{{ topic.lastPost.createdAt|date('Y-m-d H:i') }}
{% else %}
&nbsp;<br />&nbsp;
{% endif %}
2012-07-13 11:53:41 +00:00
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
Ebben a témakörben nincsenek témák.
{% endif %}
{% endblock content %}