diff options
Diffstat (limited to 'templates/program/show_detail.html')
-rw-r--r-- | templates/program/show_detail.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/templates/program/show_detail.html b/templates/program/show_detail.html index 05e678c..9cd2d8e 100644 --- a/templates/program/show_detail.html +++ b/templates/program/show_detail.html @@ -39,9 +39,11 @@ {% endfor %} </div> + {% if show.short_description != 'FIXME' %} <div id="short-description">{{ show.short_description }}</div> + {% endif %} - <div id="description">{{ show.description }}</div> + <div id="description">{{ show.description|safe }}</div> {% if show.email %} <div id="email"><a href="mailto:{{ show.email }}">{{ show.email }}</a></div> |