From 50f559328b68338698848d1d9e3bc8f4272c4414 Mon Sep 17 00:00:00 2001 From: Alexander Burdeiny Date: Mon, 1 Aug 2016 11:53:02 +0300 Subject: [PATCH] fix for |safe template tag --- templates/client/includes/conference/conference_object.html | 2 +- templates/client/includes/conference/conference_paid.html | 2 +- templates/client/includes/exposition/expo_paid.html | 2 +- templates/client/includes/exposition/exposition_object.html | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/templates/client/includes/conference/conference_object.html b/templates/client/includes/conference/conference_object.html index 964cf33a..763f9363 100644 --- a/templates/client/includes/conference/conference_object.html +++ b/templates/client/includes/conference/conference_object.html @@ -36,7 +36,7 @@

{% if event.main_title %} - {{ event.name|safe }} - {{ event.main_title|safe|lowfirst }} + {{ event.name|safe }} - {{ event.main_title|lowfirst|safe }} {% else %} {{ event.name|safe }} {% endif %} diff --git a/templates/client/includes/conference/conference_paid.html b/templates/client/includes/conference/conference_paid.html index 5f7b011f..1d199237 100644 --- a/templates/client/includes/conference/conference_paid.html +++ b/templates/client/includes/conference/conference_paid.html @@ -44,7 +44,7 @@

{% if event.main_title %} - {{ event.name|safe }} - {{ event.main_title|safe|lowfirst }} + {{ event.name|safe }} - {{ event.main_title|lowfirst|safe }} {% else %} {{ event.name|safe }} {% endif %} diff --git a/templates/client/includes/exposition/expo_paid.html b/templates/client/includes/exposition/expo_paid.html index 00fcc954..2972441c 100644 --- a/templates/client/includes/exposition/expo_paid.html +++ b/templates/client/includes/exposition/expo_paid.html @@ -42,7 +42,7 @@

{% if exposition.main_title %} - {{ exposition.name|safe }} - {{ exposition.main_title|safe|lowfirst }} + {{ exposition.name|safe }} - {{ exposition.main_title|lowfirst|safe }} {% else %} {{ exposition.name|safe }} {% endif %} diff --git a/templates/client/includes/exposition/exposition_object.html b/templates/client/includes/exposition/exposition_object.html index 51d69919..ef78e628 100644 --- a/templates/client/includes/exposition/exposition_object.html +++ b/templates/client/includes/exposition/exposition_object.html @@ -39,7 +39,7 @@

{% if exposition.main_title %} - {{ exposition.name|safe }} - {{ exposition.main_title|safe|lowfirst }} + {{ exposition.name|safe }} - {{ exposition.main_title|lowfirst|safe }} {% else %} {{ exposition.name|safe }} {% endif %}