Skip to content

Commit

Permalink
Merge pull request #612 from CTPUG/frab-xml-day-attrs
Browse files Browse the repository at this point in the history
frab XML: Emit <day start=... end=...> attributes
  • Loading branch information
stefanor committed Jul 24, 2021
2 parents db5b16f + 261e3ca commit 02cd216
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion wafer/schedule/templates/wafer.schedule/penta_schedule.xml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<acronym>{{ WAFER_CONFERENCE_ACRONYM }}</acronym>
</conference>
{% for page in schedule_pages %}
<day date="{{ page.block.start_time|date:'Y-m-d' }}" index="{{ forloop.counter }}">
<day date="{{ page.block.start_time.date.isoformat }}" start="{{ page.block.start_time.isoformat }}" end="{{ page.block.end_time.isoformat }}" index="{{ forloop.counter }}">
{% for venue in page.venues %}
<room name="{{ venue.name }}">
{% for row in page.rows %}
Expand Down

0 comments on commit 02cd216

Please sign in to comment.