Initiale Version

This commit is contained in:
Jan Unger
2016-08-16 21:20:53 +02:00
commit 88cf71d772
10930 changed files with 1708903 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
{% extends 'base.html.twig' %}
{% block body %}
<table>
<tr>
<th>Künstler</th>
<th>Album</th>
<th>Erscheinungsjahr</th>
</tr>
{% for cd in cds %}
<tr>
<td>{{ cd.kuenstler.name }}</td>
<td>
<a href="{{ path('cd', {'cdId': cd.id}) }}">{{ cd.name }}</a>
</td>
<td>{{ cd.erscheinungsjahr }}</td>
</tr>
{% endfor %}
</table>
{% endblock %}