From 703382cb1a4bc6fee09cb3fc71ec99559ad21561 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Phillip=20K=C3=BChne?= Date: Sat, 29 Jun 2019 02:12:23 +0200 Subject: [PATCH] Add PDF export/printing for list of played songs --- app/templates/main.html | 12 +++++++----- app/templates/main_admin.html | 14 +++++++------ app/templates/played_list.html | 36 +++++++++++++++++++++++++++++----- 3 files changed, 46 insertions(+), 16 deletions(-) diff --git a/app/templates/main.html b/app/templates/main.html index 880cdb4..ae93315 100644 --- a/app/templates/main.html +++ b/app/templates/main.html @@ -4,11 +4,13 @@ {% block title %}Home{% endblock %} {% block content %} - - - - - + + + + + + + {% for entry in list: %}
NameSongKünstler
NameSongKünstler
diff --git a/app/templates/main_admin.html b/app/templates/main_admin.html index 7db53eb..2afa130 100644 --- a/app/templates/main_admin.html +++ b/app/templates/main_admin.html @@ -17,12 +17,14 @@
- - - - - - + + + + + + + + {% for entry in list: %}
NameSongKünstlerAktionen
NameSongKünstlerAktionen
diff --git a/app/templates/played_list.html b/app/templates/played_list.html index a787a75..25a9625 100644 --- a/app/templates/played_list.html +++ b/app/templates/played_list.html @@ -5,13 +5,18 @@
+ +
- - - - - +
SongWiedergaben
+ + + + + + {% for entry in list: %}
SongWiedergaben
@@ -26,6 +31,8 @@
{% endblock %} {% block extrajs %} + + {% endblock %} \ No newline at end of file