diff --git a/mpicms/templates/base/blocks/contact_block.html b/mpicms/templates/base/blocks/contact_block.html index e296b2d..3a21a9e 100644 --- a/mpicms/templates/base/blocks/contact_block.html +++ b/mpicms/templates/base/blocks/contact_block.html @@ -25,7 +25,7 @@ {% if value.contact.room %} - {{ value.contact.room }} + {{ value.contact.room | add_room_links }} {% endif %} diff --git a/mpicms/templates/events/event.html b/mpicms/templates/events/event.html index 7f7efc6..73b4f33 100644 --- a/mpicms/templates/events/event.html +++ b/mpicms/templates/events/event.html @@ -38,10 +38,10 @@

{{ page.title }}

{% if page.room %} -
+
- {{ page.room }} - + {{ page.room | add_room_links }} +
{% endif %} @@ -58,4 +58,4 @@

{{ page.title }}

-{% endblock %} \ No newline at end of file +{% endblock %} diff --git a/mpicms/templates/personal/list.html b/mpicms/templates/personal/list.html index 2cda009..e410f01 100644 --- a/mpicms/templates/personal/list.html +++ b/mpicms/templates/personal/list.html @@ -55,7 +55,7 @@

{% trans 'Contact List' %}

{{ contact.last_name }} {{ contact.email }} {{ contact.phone }} - {{ contact.room }} + {{ contact.room | add_room_links }} {% for contactposition in contact.positions.all %}{{ contactposition.position }}
{% endfor %} {% for contactgroup in contact.groups.all %}{{ contactgroup.group }}
{% endfor %}