mirror of
https://github.com/slawkens/myaac.git
synced 2025-04-26 17:29:21 +02:00

* moved news.add to twig template * now twig templates will be loaded directly from template dir f.e. templates/kathrine/news.html.twig
19 lines
470 B
Twig
19 lines
470 B
Twig
<b>Installed plugins:</b>
|
|
<table class="table" border="0" align="center">
|
|
<tr>
|
|
<th>Plugin name (Description on hover)</th>
|
|
<th>Filename</th>
|
|
<th>Version</th>
|
|
<th>Author</th>
|
|
<th>Contact</th>
|
|
</tr>
|
|
{% for plugin in plugins %}
|
|
<tr>
|
|
<td><div title="{{ plugin.description }}">{{ plugin.name }}</div></td>
|
|
<td>{{ plugin.file }}</td>
|
|
<td>{{ plugin.version }}</td>
|
|
<td>{{ plugin.author }}</td>
|
|
<td>{{ plugin.contact }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table> |