From b8aa34ce1d849ae7d696c9de05e11e7e9f33724b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniele=20Vigan=C3=B2?= Date: Sat, 23 Jul 2022 11:58:17 +0200 Subject: [PATCH] Add modal for pictures --- ram/portal/templates/page.html | 19 ++++++++++++++++++- ram/ram/__init__.py | 2 +- 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/ram/portal/templates/page.html b/ram/portal/templates/page.html index 82c2028..a038d27 100644 --- a/ram/portal/templates/page.html +++ b/ram/portal/templates/page.html @@ -15,7 +15,24 @@ {% block cards %} {% for t in rolling_stock.image.all %}
- Rolling stock image + Rolling stock image +
+ + {% endfor %} {% endblock %} diff --git a/ram/ram/__init__.py b/ram/ram/__init__.py index e5ad384..16357c1 100644 --- a/ram/ram/__init__.py +++ b/ram/ram/__init__.py @@ -1,4 +1,4 @@ from ram.utils import git_suffix -__version__ = "0.0.11" +__version__ = "0.0.12" __version__ += git_suffix(__file__)