Skip to content

Commit

Permalink
Fix broken schedule.xml format
Browse files Browse the repository at this point in the history
closes #1685
  • Loading branch information
rixx committed Feb 15, 2024
1 parent c78454d commit 534f59c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pretalx/agenda/templates/agenda/schedule.xml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<time_zone_name>{{ event.timezone }}</time_zone_name>
{% if event.color %}<color>{{ event.color }}</color>{% endif %}
{% for track in event.tracks.all %}
<track name="{{ track.name }}" slug="{{ track.slug }}" {% if track.color %} color="{{ track.color.lower }}"{% endif %}>{% if talk.submission.track %}{{ talk.submission.track.name }}{% endif %} />
<track name="{{ track.name }}" slug="{{ track.slug }}" {% if track.color %} color="{{ track.color.lower }}"{% endif %}{% if talk.submission.track %}{{ talk.submission.track.name }}{% endif %} />
{% endfor %}
</conference>
{% for day in data %}<day index='{{ day.index }}' date='{{ day.start.date|date:"c" }}' start='{{ day.start|date:"c" }}' end='{{ day.end|date:"c" }}'>
Expand Down

0 comments on commit 534f59c

Please sign in to comment.