<div class="c-tabs-nav">
{% for location in object_list %}
<a href="#" class="c-tabs-nav__link {% if forloop.first %}is-active{% endif %}">
- {% if location.featured_name %}{{ location.featured_name }}{% else %}{{ location.title }}{% endif %}</a>
+ {{ location.title }}{% if location.room %} - {{ location.room }}{% endif %}</a>
<hr/>
{% endfor %}
</div>
{% load i18n future mezzanine_tags event_tags %}
<div class="c-tab__content">
- <h3 class="location__title">{% if location.featured_name %}{{ location.featured_name }}{% else %}{{ location.title }}{% endif %}</h3>
+ <h3 class="location__title">{{ location.title }}{% if location.room %} - {{ location.room }}{% endif %}</h3>
{% block event_detail_location %}
<p>{{ location.address }}</p>
<p>{% trans "Room" %} {{ event.location.room }}</p>