Skip to content

Commit 048a3b7

Browse files
committed
Merge fix from facelift-r9069 branch
- Legacy-Id: 9080
2 parents 9760cd9 + eda5eed commit 048a3b7

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

ietf/templates/meeting/agenda.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -191,12 +191,12 @@ <h2>
191191
{% endif %}
192192
</td>
193193
<td class="hidden-xs" colspan="3">
194-
{% if item.timeslot.show_location %}
195-
<a href="//tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|split:"/"|join:"/<wbr>"}}</a>
194+
{% if item.timeslot.show_location and item.timeslot.get_location %}
195+
<a href="//tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|split:"/"|join:"/<wbr>"}}</a>
196196
{% endif %}
197197
</td>
198198
<td class="visible-xs">
199-
{% if item.timeslot.show_location %}
199+
{% if item.timeslot.show_location and item.timeslot.get_location %}
200200
<a href="//tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|split:"/"|join:"/<wbr>"}}</a>
201201
{% endif %}
202202
</td>
@@ -221,12 +221,12 @@ <h2>
221221
{% endif %}
222222
</th>
223223
<td class="hidden-xs" colspan="3">
224-
{% if item.timeslot.show_location %}
224+
{% if item.timeslot.show_location and item.timeslot.get_location %}
225225
<a href="//tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|split:"/"|join:"/<wbr>"}}</a>
226226
{% endif %}
227227
</td>
228228
<td class="visible-xs">
229-
{% if item.timeslot.show_location %}
229+
{% if item.timeslot.show_location and item.timeslot.get_location %}
230230
<a href="//tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|split:"/"|join:"/<wbr>"}}</a>
231231
{% endif %}
232232
</td>
@@ -236,7 +236,7 @@ <h2>
236236
</td>
237237

238238
<td>
239-
{% if item.timeslot.show_location %}
239+
{% if item.timeslot.show_location and item.timeslot.get_location %}
240240
<a href="//tools.ietf.org/agenda/{{schedule.meeting.number}}/venue/?room={{ item.timeslot.get_location|slugify }}">{{item.timeslot.get_location|split:"/"|join:"/<wbr>"}}</a>
241241
{% endif %}
242242
</td>

0 commit comments

Comments
 (0)