Skip to content

Commit

Permalink
#11 - Add main conference papers
Browse files Browse the repository at this point in the history
- Add paper sessions
  • Loading branch information
jcklie committed Oct 31, 2020
1 parent 31c4354 commit 36b0f63
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions miniconf/load_site_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -462,12 +462,11 @@ def generate_paper_events(site_data: Dict[str, Any]):
all_sessions = []
for uid, session in site_data["paper_sessions"].items():
kind = "Zoom" if uid[-1] == "g" else "Gather"
uid = uid[:-1]
start = session["start_time"]
end = session["end_time"]

event = {
"title": f"QA Session {uid} <br> {kind}",
"title": f"QA Session {uid[:-1]} <br> {kind}",
"start": start,
"end": end,
"location": "",
Expand Down

0 comments on commit 36b0f63

Please sign in to comment.