diff --git a/LyricsPy/K8S/Makefile b/LyricsPy/K8S/Makefile index ba91931..446121b 100644 --- a/LyricsPy/K8S/Makefile +++ b/LyricsPy/K8S/Makefile @@ -1,4 +1,4 @@ -export IMG_VERSION = 6.9 +export IMG_VERSION = 7.0 imagen: cd ../servicios; make diff --git a/LyricsPy/servicios/albumescard.html b/LyricsPy/servicios/albumescard.html new file mode 100644 index 0000000..19e0ba1 --- /dev/null +++ b/LyricsPy/servicios/albumescard.html @@ -0,0 +1,84 @@ +{% extends 'base.html' %} + +{% block content %} +
+ +
+
+

Álbumes

+
+
+
+
+
+ + +
+
+
+ +
+
+ +
+
+
+
+
+
+ +
+ {% for album in albums %} +
+
+
+ {% if album.cover_image %} + {{ album.name }} + {% else %} + Sin imágen + {% endif %} +

{{ album.name }}

+
+
    +
  • Artista:{{ album.artist }}
  • +
  • Año:{{ album.year }}
  • +
+
+ + + +
+
+
+ {% endfor %} +
+
+{% endblock %} \ No newline at end of file