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,17 @@
{% extends 'base.html.twig' %}
{% block body %}
<form action="{{ path('lied-bearbeiten', {'liedId': lied.id}) }}" method="post">
<h1>Lied bearbeiten</h1>
<h2>'{{ lied.cd.name }}' ({{ lied.cd.kuenstler.name }})</h2>
<label>Track
<input type="text" name="track" value="{{ lied.track }}"/>
</label>
<label>Titel
<input type="text" name="titel" value="{{ lied.titel }}"/>
</label>
<button type="submit" name="aktion" value="speichern">Speichern</button>
<button type="submit" name="aktion" value="abbrechen">Abbrechen</button>
</form>
{% endblock %}

View File

@@ -0,0 +1,15 @@
{% extends 'base.html.twig' %}
{% block body %}
<form action="{{ path('lied-loeschen', {'liedId': lied.id}) }}" method="post">
<h1>Lied löschen</h1>
<h2>{{ lied.cd.name }} ({{ lied.cd.kuenstler.name }})</h2>
<p>
Möchten Sie Track {{ lied.track }} '{{ lied.titel }}' löschen?<br>
Diese Aktion kann nicht rückgängig gemacht werden.
</p>
<button type="submit" name="aktion" value="loeschen">Löschen!</button>
<button type="submit" name="aktion" value="abbrechen">Abbrechen</button>
</form>
{% endblock %}