From 3af8e64f1f77404c33e22c24db5ed13ad730c0fc Mon Sep 17 00:00:00 2001 From: Xeniac Date: Fri, 27 Apr 2018 10:11:19 +0200 Subject: [PATCH] Added the full address to the next/upcoming event in the redbox. --- src/kasu/templates/base.html | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/src/kasu/templates/base.html b/src/kasu/templates/base.html index 49f65ce..bb6a392 100644 --- a/src/kasu/templates/base.html +++ b/src/kasu/templates/base.html @@ -73,7 +73,9 @@
  • {% trans "Start" %}:
  • -
  • {% trans "Location" %}: {{ current_event.location }}
  • +
  • {% trans "Location" %}: {{ current_event.location }} + - {{current_event.location.street_address}}, {{current_event.location.postal_code}} {{current_event.location.locality}} +
  • {% trans "More Details" %}
    @@ -85,7 +87,9 @@
  • {% trans "Start" %}:
  • -
  • {% trans "Location" %}: {{ next_event.location }}
  • +
  • {% trans "Location" %}: {{ next_event.location }} + - {{next_event.location.street_address}}, {{next_event.location.postal_code}} {{next_event.location.locality}} +
  • {% trans "More Details" %}