From cd622f1c05cb3fe88a3bb47892bac7e1eabab605 Mon Sep 17 00:00:00 2001 From: krzysiej Date: Fri, 20 May 2022 15:13:22 +0200 Subject: [PATCH] Removed file related fields from book entity except fo the cover. --- templates/book/index.html.twig | 4 ---- templates/book/show.html.twig | 8 -------- 2 files changed, 12 deletions(-) diff --git a/templates/book/index.html.twig b/templates/book/index.html.twig index 95719bd..3ec7ef3 100644 --- a/templates/book/index.html.twig +++ b/templates/book/index.html.twig @@ -15,8 +15,6 @@ Description Publisher Publish_date - Filename - Original_filename actions @@ -30,8 +28,6 @@ {{ book.description }} {{ book.publisher }} {{ book.publishDate ? book.publishDate|date('Y-m-d') : '' }} - {{ book.filename }} - {{ book.originalFilename }} show edit diff --git a/templates/book/show.html.twig b/templates/book/show.html.twig index adf1150..c0be308 100644 --- a/templates/book/show.html.twig +++ b/templates/book/show.html.twig @@ -31,14 +31,6 @@ Publish_date {{ book.publishDate ? book.publishDate|date('Y-m-d') : '' }} - - Filename - {{ book.filename }} - - - Original_filename - {{ book.originalFilename }} -