You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.1 KiB
Twig
34 lines
1.1 KiB
Twig
{% extends '::main_template.html.twig' %}
|
|
{% block title %} - {{ group.name }}{% endblock %}
|
|
{% block additional_css %}
|
|
<link rel="stylesheet" href="{{ asset('css/group.css') }}" type="text/css" />
|
|
{% endblock additional_css %}
|
|
{% block content %}
|
|
<ul id="submenu">
|
|
<li><a href="{{ path('KekRozsakFrontBundle_groupView', { groupSlug: group.slug }) }}">Leírás</a></li>
|
|
<li><a href="{{ path('KekRozsakFrontBundle_groupMembers', { groupSlug: group.slug }) }}">Tagok</a></li>
|
|
</ul>
|
|
<h3>{{ group.name }} - Dokumentumok</h3>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<td colspan="2">Cím</td>
|
|
<td>Készítette</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for document in group.documents %}
|
|
<tr>
|
|
<td>[ikon]</td>
|
|
<td><a href="{{ path('KekRozsakFrontBundle_documentView', { documentSlug: document.slug }) }}">{{ document.title }}</a></td>
|
|
<td>
|
|
{{ document.createdBy.displayName }}<br />
|
|
{{ document.createdAt|date('Y-m-d H:i') }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
<a href="{{ path('KekRozsakFrontBundle_documentCreate', { groupSlug: group.slug }) }}">Új dokumentum</a>
|
|
{% endblock %}
|