diff --git a/Libros/biblioteca/db.sqlite3 b/Libros/biblioteca/db.sqlite3 index 4e6304f..9d40bdb 100644 Binary files a/Libros/biblioteca/db.sqlite3 and b/Libros/biblioteca/db.sqlite3 differ diff --git a/Libros/biblioteca/gestion/templates/gestion/lista_autores.html b/Libros/biblioteca/gestion/templates/gestion/lista_autores.html index 83e5d0a..4797171 100644 --- a/Libros/biblioteca/gestion/templates/gestion/lista_autores.html +++ b/Libros/biblioteca/gestion/templates/gestion/lista_autores.html @@ -1,19 +1,71 @@ - - - - Lista de Autores - - -

Lista de Autores

- Nuevo Autor - - - +{% extends 'base.html' %} + +{% block content %} +
+ +
+
+

Autores

+
+
+
+
+
+ +
+
+
+ +
+ {% for autor in autores %} +
+
+
+ + {% if autor.foto %} + Foto del autor + {% else %} + Sin imágen + {% endif %} +

{{ autor.nombre}}

+ +
+ +
+ +
+
+
+ {% endfor %} +
+
+{% endblock %} \ No newline at end of file