From 0d2d81cdc713e36634c7ccc49aabf12a9f0d0509 Mon Sep 17 00:00:00 2001 From: Alex Rush Date: Sun, 26 Apr 2020 21:06:04 -0400 Subject: [PATCH 01/39] expos --- main.py | 9 ++++++- sitedata/expos.yml | 46 ++++++++++++++++++++++------------- templates/pages/schedule.html | 42 +++++++++++++++++++++++++++++--- 3 files changed, 75 insertions(+), 22 deletions(-) diff --git a/main.py b/main.py index 3c255feed..cda427f77 100644 --- a/main.py +++ b/main.py @@ -245,7 +245,7 @@ def schedule(): for o in out["section"]] } all_days["days"].append(out) - + all_days["expos"] = site_data["expos"]["expos"] return render_template('pages/schedule.html', **all_days) @@ -282,6 +282,13 @@ def speaker(speaker): "id": int(speaker) }) +@app.route('/expo_.html') +def expo(expo): + return render_template('pages/expo.html', + **{"info":site_data["expos"]["expos"][int(expo) -1 ], + "id": int(expo) + }) + @app.route('/poster_.html') def poster(poster): diff --git a/sitedata/expos.yml b/sitedata/expos.yml index 32276520d..ffb3bfc76 100644 --- a/sitedata/expos.yml +++ b/sitedata/expos.yml @@ -1,17 +1,29 @@ - -socials: - - name: Open source tools and practices in state-of-the-art DL research - organizers: "Kamil A. Kaczmarek & Patryk Miziula" - website: https://neptune.ai/landings/iclr-virtual-social - image: Open-source-tools.png - day: - - Tuesday - - Thursday - times: - - 16:00-18:00 GMT - - 17:00-19:00 GMT - links: - - "" - - "" - description: "Appropriate tooling is an inevitable part of the SOTA deep learning research. Recent advancements in the field resulted in the proliferation of large frameworks’ ecosystems (TensorFlow, PyTorch, MXNet) as well as smaller targeted tools that serve specific needs. This social event is centered around all the tools and practices, big and small, that are relevant to the ICLR community. Participants are encouraged to show their own open source tools that they build, regardless of their size and proliferation level. It can be a single CLI command that you find useful or an entire framework. Main goal for the participants is to introduce them to the wide range of tools and practices that may result in faster research progression and standardization." - id: OSS +expos: + - name: ByteDance + slides_live: + title: Learning Deep Latent Models for Text Sequences + speaker: Lei Li + zoom: https://us02web.zoom.us/j/86714113459?pwd=STBCN0ttRU5GdGJrY0p2S3lCU1F6QT09 + day: Wed + time: "19:00-20:00 GMT" + - name: IBM + slides_live: + title: Neurosymbolic Hybrid AI + speaker: David Cox, Claire Jobe + zoom: https://us02web.zoom.us/j/86563430819?pwd=TlpJWGNhMG0vd1lRZk84ZGo0ZG5HQT09 + day: Tues + time: "16:00-17:00 GMT" + - name: Element AI + slides_live: + speaker: Harm de Vries, Valerie Becaert + title: Towards Ecologically Valid Research on Natural Language Interfaces + zoom: https://us02web.zoom.us/j/83457902079?pwd=bmsvWGFNYXJHc2FWL2FwaVZRVUVldz09 + day: Wed + time: "15:00-16:00 GMT" + - name: Amazon + slides_live: + title: Reinforcement Learning @ Amazon + zoom: https://us02web.zoom.us/j/83414828480?pwd=Nk5FMmlzRkhOV1ZtZlVNQWRuczFrUT09 + speaker: Britt Allen, Rui Song + day: Thurs + time: "15:00-16:00 GMT" diff --git a/templates/pages/schedule.html b/templates/pages/schedule.html index 8aedfce14..398294bbc 100644 --- a/templates/pages/schedule.html +++ b/templates/pages/schedule.html @@ -75,8 +75,6 @@
- -
@@ -214,12 +212,48 @@

-

Expo

+

Expos

+ +
+
-

Stay tuned for four scheduled Expo talks!

+ +
+ {% for expo in expos %} +
+
+
+ +

+
+ {{expo.name}}
+
+ {{expo.title}}
+

+
+ + +
+ {{expo.speaker}} +
+ {{expo.day}} ({{expo.time}}) +
+ + +
+
+
+
+ {% endfor %} +

From d6a0b06eedd0d172485d1fa2ea6b8862f0aa7c84 Mon Sep 17 00:00:00 2001 From: Guy Aglionby Date: Mon, 27 Apr 2020 11:19:26 +0100 Subject: [PATCH 02/39] Add Highwire Press meta tags for citation info --- templates/pages/page.html | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/templates/pages/page.html b/templates/pages/page.html index d612044e5..966e19932 100644 --- a/templates/pages/page.html +++ b/templates/pages/page.html @@ -2,6 +2,17 @@ {% set page_title = "ICLR: " + openreview.content.title %} {% include 'pages/head.html' %} + + {% for author in openreview.content.authors %} + + {% endfor %} + + + + + {% for keyword in openreview.content.keywords %} + + {% endfor %} {% include 'pages/header.html' %} From 47a0bd3d86a078016e809e0da8917802bebfb5ee Mon Sep 17 00:00:00 2001 From: Alex Rush Date: Mon, 27 Apr 2020 09:07:50 -0400 Subject: [PATCH 03/39] small fixes --- main.py | 2 + sitedata/speakers.yml | 16 ++- sitedata/volunteers.yml | 1 + static/basic.ics | 180 ++++++++++++++++------------------ static/css/main.css | 4 + templates/pages/schedule.html | 10 +- templates/pages/speaker.html | 54 +++++++++- 7 files changed, 159 insertions(+), 108 deletions(-) diff --git a/main.py b/main.py index cda427f77..94f256262 100644 --- a/main.py +++ b/main.py @@ -415,6 +415,8 @@ def your_generator_here(): yield "workshop", {"workshop": str(i)} for i in range(1, len(site_data["speakers"]["speakers"])+1): yield "speaker", {"speaker": str(i)} + for i in range(1, 5): + yield "expo", {"expo": str(i)} # --------------- DRIVER CODE --------------------------> diff --git a/sitedata/speakers.yml b/sitedata/speakers.yml index 9ce57d4f1..7f16373dd 100644 --- a/sitedata/speakers.yml +++ b/sitedata/speakers.yml @@ -1,6 +1,7 @@ speakers: - speaker: Dr. Aisha Walcott-Bryant slides_link: 38926698 + qa_link: 38926908 title: "AI + Africa = Global Innovation" image: static/images/aisha.jpg institution: IBM Research Africa, Nairobi @@ -15,6 +16,7 @@ speakers: image: static/images/Kaelbling-1.jpg zoom: https://us02web.zoom.us/j/84236486211?pwd=a1RYbWJvOWFsQ09EVkdieldLV1pOZz09 slides_link: 38926697 + qa_link: 38926909 institution: MIT day: Monday time: 19:00-19:30 GMT @@ -28,6 +30,7 @@ speakers: zoom: https://us02web.zoom.us/j/84412565544?pwd=S2JSMTducGJNdUNDWDJDN3Via3lhZz09 day: Tuesday slides_link: 38926699 + qa_link: 38926910 id: 3 time: 14:00-14:30 GMT abstract: "From everyday apps to complex algorithms, technology has the potential to hide, speed, and even deepen discrimination, while appearing neutral and even benevolent when compared to racist practices of a previous era. In this talk, I explore a range of discriminatory designs that encode inequity: by explicitly amplifying racial hierarchies, by ignoring but thereby replicating social divisions, or by aiming to fix racial bias but ultimately doing quite the opposite. This presentation takes us into the world of biased bots, altruistic algorithms, and their many entanglements, and provides conceptual tools to decode tech promises with sociologically informed skepticism. In doing so, it challenges us to question not only the technologies we are sold, but also the ones we manufacture ourselves." @@ -40,6 +43,7 @@ speakers: day: Tuesday zoom: https://us02web.zoom.us/j/81113669821?pwd=Vzc4V2tZcXJzWDg5TDNFRVVMbHBDdz09 id: 4 + qa_link: 38926912 time: 19:00-19:30 GMT abstract: "Normalizing flows provide a tool to build an expressive and tractable family of probability distributions. In the last few years, research in this field has successfully harnessed some of the latest advances in deep learning to design flexible invertible models. Recently, these methods have seen wider adoption in the machine learning community for applications such as probabilistic inference, density estimation, and classification. In this talk, I will reflect on the recent progress made by the community on using, expanding, and repurposing this toolset, and describe my perspective on challenges and opportunities in this direction." bio: "Laurent Dinh is a research scientist at Google Brain Montréal. His research focus has been on deep generative models, probabilistic modeling, and generalization in deep learning. He's best known for his contribution in normalizing flows generative models, such as NICE and Real NVP, and in generalization in deep learning.He obtained his PhD in deep learning at Mila, under the supervision of Yoshua Bengio, during which he visited Google Brain and DeepMind. Before that, he graduated from École Centrale Paris in Applied Mathematics and from École Normale Supérieure de Cachan in machine learning and computer vision." @@ -49,6 +53,7 @@ speakers: institution: University of Cambridge, The Alan Turing Institute, UCLA day: Wednesday slides_link: 38926701 + qa_link: 38926913 zoom: https://us02web.zoom.us/j/84801666334?pwd=b3RzY1dqRHZ4OFBhaWZ6Q28zZUhlUT09 time: 11:00-11:30 GMT id: 5 @@ -62,6 +67,7 @@ In this talk I will show how machine learning is transforming medicine and how m day: Wednesday zoom: https://us02web.zoom.us/j/87410344494?pwd=MnhZVjI1V0NuRzN0U3VQdjdIckpNQT09 slides_link: 38926702 + qa_link: 38926915 time: 16:00-16:30 GMT id: 6 abstract: "I will talk about AI systems at the intersection of computer vision and natural language processing. I will give an overview of why problems at the intersection of vision and language are exciting, what capabilities today's AI systems have, and what challenges remain." @@ -74,11 +80,16 @@ She is a recipient of an IJCAI Computers and Thought award, a Sloan Research Fel institution: Facebook AI + NYU / MILA day: Thursday id: 7 + qa_link: https://slideslive.com/38926919 slides_link: 38926703 time: 16:00-16:30 GMT zoom: https://us02web.zoom.us/j/89307958147?pwd=RkF3aHF2MXBtOVRMOEQyVThSbnkwZz09 - abstract: "Yoshua (Deep Learning Priors Associated with Conscious Processing): -Some of the aspects of the world around us are captured in natural language and refer to semantic high-level variables, which often have a causal role (referring to agents, objects, and actions or intentions). These high-level variables also seem to satisfy very peculiar characteristics which low-level data (like images or sounds) do not share, and this work is about characterizing these characteristics in the form of priors which can guide the design of machine learning systems benefitting from these priors. Since these priors are not just about their joint distribution (e.g. it has a sparse factor graph) but also about how the distribution changes (typically by causal interventions), this analysis may also help to build machine learning systems which can generalize better out-of-distribution. There are fascinating connections between these priors and what is hypothesized about conscious processing in the brain, with conscious processing allowing us to reason (i.e., perform chains of inferences about the past and the future, as well as credit assignment) at the level of these high-level variables. This involves attention mechanisms and short-term memory to form a bottleneck of information being broadcast around the brain between different parts of it, as we focus on different high-level variables and some of their interactions. The presentation summarizes a few recent results using some of these ideas for discovering causal structure and modularizing recurrent neural networks with attention mechanisms in order to obtain better out-of-distribution generalization." + abstract: "Yoshua Bengio (Deep Learning Priors Associated with Conscious Processing): +Some of the aspects of the world around us are captured in natural language and refer to semantic high-level variables, which often have a causal role (referring to agents, objects, and actions or intentions). These high-level variables also seem to satisfy very peculiar characteristics which low-level data (like images or sounds) do not share, and this work is about characterizing these characteristics in the form of priors which can guide the design of machine learning systems benefitting from these priors. Since these priors are not just about their joint distribution (e.g. it has a sparse factor graph) but also about how the distribution changes (typically by causal interventions), this analysis may also help to build machine learning systems which can generalize better out-of-distribution. There are fascinating connections between these priors and what is hypothesized about conscious processing in the brain, with conscious processing allowing us to reason (i.e., perform chains of inferences about the past and the future, as well as credit assignment) at the level of these high-level variables. This involves attention mechanisms and short-term memory to form a bottleneck of information being broadcast around the brain between different parts of it, as we focus on different high-level variables and some of their interactions. The presentation summarizes a few recent results using some of these ideas for discovering causal structure and modularizing recurrent neural networks with attention mechanisms in order to obtain better out-of-distribution generalization. +

+Yann LeCun (The Future is Self-Supervised): Humans and animals learn enormous amount of background knowledge about the world in the early months of life with little supervision and almost no interactions. How can we reproduce this learning paradigm in machines? One proposal for doing so is Self-Supervised Learning (SSL) in which a system is trained to predict a part of the input from the rest of the input. SSL, in the form of denoising auto-encoder, has been astonishingly successful for learning task-independent representations of text. But the success has not been translated to images and videos. The main obstacle is how to represent uncertainty in high-dimensional continuous spaces in which probability densities are generally intractable. We propose to use Energy-Based Models (EBM) to represent data manifolds or level-sets of distributions on the variables to be predicted. There are two classes of methods to train EBMs: (1) contrastive methods that push down on the energy of data points and push up elsewhere; (2) architectural and regularizing methods that limit or minimize the volume of space that can take low energies by regularizing the information capacity of a latent variable. While contrastive methods have been somewhat successful to learn image features, they are very expensive computationally. +I will propose that the future of self-supervised representation learning lies in regularized latent-variable energy-based models. +" bio: "Yoshua Bengio is recognized as one of the world’s artificial intelligence leaders and a pioneer of deep learning. Professor since 1993 at the Université de Montréal, he received the A.M. Turing Award 2018, considered like the Nobel prize for computing, with Geoff Hinton and Yann LeCun. Holder of the Canada Research Chair in Statistical Learning Algorithms, he is also the founder and scientific director of Mila, the Quebec Institute of AI–the world’s biggest university-based research group in deep learning. In 2018, he collected the largest number of new citations in the world for a computer scientist and earned the prestigious Killam Prize from the Canada Council for the Arts. Concerned about the social impact of AI, he actively contributed to the Montreal Declaration for the Responsible Development of Artificial Intelligence. Yann LeCun is VP and Chief AI Scientist at Facebook and Silver Professor at NYU affiliated with the Courant Institute and the Center for Data Science. He was the founding Director of Facebook AI Research and of the NYU Center for Data Science. He received an EE Diploma from ESIEE (Paris) in 1983, a PhD in Computer Science from Université Pierre et Marie Curie (Paris) in 1987. After a postdoc at the University of Toronto, he joined AT&T Bell Laboratories. He became head of the Image Processing Research Department at AT&T Labs-Research in 1996, and joined NYU in 2003 after a short tenure at the NEC Research Institute. In late 2013, LeCun became Director of AI Research at Facebook, while remaining on the NYU Faculty part-time. He was visiting professor at Collège de France in 2016. His research interests include machine learning and artificial intelligence, with applications to computer vision, natural language understanding, robotics, and computational neuroscience. He is best known for his work in deep learning and the invention of the convolutional network method which is widely used for image, video and speech recognition. He is a member of the US National Academy of Engineering, a Chevalier de la Légion d’Honneur, a fellow of AAAI, the recipient of the 2014 IEEE Neural Network Pioneer Award, the 2015 IEEE Pattern Analysis and Machine Intelligence Distinguished Researcher Award, the 2016 Lovie Award for Lifetime Achievement, the University of Pennsylvania Pender Award, and honorary doctorates from IPN, Mexico and EPFL. He is the recipient of the 2018 ACM Turing Award (with Geoffrey Hinton and Yoshua Bengio) for “conceptual and engineering breakthroughs that have made deep neural networks a critical component of computing.” @@ -89,6 +100,7 @@ Yann LeCun is VP and Chief AI Scientist at Facebook and Silver Professor at NYU image: static/images/jordan.jpg day: Thursday slides_link: 38926705 + qa_link: 38926920 time: 19:00-19:30 GMT id: 8 zoom: https://us02web.zoom.us/j/87415189812?pwd=QlFweWhPWmxlOW5sYmh2YTBSZXZlUT09 diff --git a/sitedata/volunteers.yml b/sitedata/volunteers.yml index b136a4aa6..589af70b1 100644 --- a/sitedata/volunteers.yml +++ b/sitedata/volunteers.yml @@ -11,3 +11,4 @@ - Marija Stanojevic - Tejaswi Kasarla - Olga Isupova +- Darren Nelson diff --git a/static/basic.ics b/static/basic.ics index bbd350fdf..24bbe29fe 100644 --- a/static/basic.ics +++ b/static/basic.ics @@ -6,15 +6,43 @@ METHOD:PUBLISH X-WR-CALNAME:ICLR 2020 X-WR-TIMEZONE:Africa/Nairobi BEGIN:VEVENT -DTSTART:20200429T150000Z -DTEND:20200429T170000Z -DTSTAMP:20200426T001610Z +DTSTART:20200427T190000Z +DTEND:20200427T220000Z +DTSTAMP:20200427T032919Z +UID:3qg85el73d0p6d4mc35lv7mmjd@google.com +CREATED:20200424T175700Z +DESCRIPTION: +LAST-MODIFIED:20200426T211444Z +LOCATION: +SEQUENCE:1 +STATUS:CONFIRMED +SUMMARY:LatinX in AI Social +TRANSP:OPAQUE +END:VEVENT +BEGIN:VEVENT +DTSTART:20200429T230000Z +DTEND:20200430T010000Z +DTSTAMP:20200427T032919Z +UID:6epmruv58nh7hl1gl8dcc7jgi6@google.com +CREATED:20200424T013548Z +DESCRIPTION: +LAST-MODIFIED:20200426T172343Z +LOCATION: +SEQUENCE:1 +STATUS:CONFIRMED +SUMMARY:Learning Representation for Cybersecurity +TRANSP:OPAQUE +END:VEVENT +BEGIN:VEVENT +DTSTART:20200430T140000Z +DTEND:20200430T160000Z +DTSTAMP:20200427T032919Z UID:68a7mr65ton4in2r49g98s9nah@google.com CREATED:20200425T212734Z DESCRIPTION: -LAST-MODIFIED:20200425T212734Z +LAST-MODIFIED:20200426T133514Z LOCATION: -SEQUENCE:0 +SEQUENCE:1 STATUS:CONFIRMED SUMMARY:Embodied Intelligence Agora TRANSP:OPAQUE @@ -22,7 +50,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T100000Z DTEND:20200429T120000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:4i53fse0rftbovm32h906fhocp@google.com CREATED:20200424T215619Z DESCRIPTION: @@ -36,7 +64,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T180000Z DTEND:20200427T200000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:1o4kke8mjp8qe64irq0j1bq92b@google.com CREATED:20200424T215551Z DESCRIPTION: @@ -50,7 +78,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T180000Z DTEND:20200430T200000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:7ajv3h12v18tp0pp3tea8alrio@google.com CREATED:20200424T231123Z DESCRIPTION: @@ -64,7 +92,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T210000Z DTEND:20200428T230000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:5rh7v0ubr43ji85ainjtsi1c17@google.com CREATED:20200424T195244Z DESCRIPTION: @@ -78,7 +106,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T110000Z DTEND:20200430T120000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:5ut4ise556l5aqc1ftkl1u0cdg@google.com CREATED:20200422T234311Z DESCRIPTION: @@ -92,7 +120,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T160000Z DTEND:20200427T170000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:719f5j14i0p7a5c6b534odfdi1@google.com CREATED:20200422T234246Z DESCRIPTION: @@ -104,37 +132,9 @@ SUMMARY:What can AI Researchers do to fight against COVID-19? TRANSP:OPAQUE END:VEVENT BEGIN:VEVENT -DTSTART:20200427T230000Z -DTEND:20200428T010000Z -DTSTAMP:20200426T001610Z -UID:73bpdgq4l72p7c5f7qf878c2b5@google.com -CREATED:20200424T175717Z -DESCRIPTION: -LAST-MODIFIED:20200424T175717Z -LOCATION: -SEQUENCE:0 -STATUS:CONFIRMED -SUMMARY:LatinX in AI Social -TRANSP:OPAQUE -END:VEVENT -BEGIN:VEVENT -DTSTART:20200427T200000Z -DTEND:20200427T220000Z -DTSTAMP:20200426T001610Z -UID:3qg85el73d0p6d4mc35lv7mmjd@google.com -CREATED:20200424T175700Z -DESCRIPTION: -LAST-MODIFIED:20200424T175700Z -LOCATION: -SEQUENCE:0 -STATUS:CONFIRMED -SUMMARY:LatinX in AI Social -TRANSP:OPAQUE -END:VEVENT -BEGIN:VEVENT DTSTART:20200430T173000Z DTEND:20200430T193000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6bjlp716vu8l25jmk97dtir7fk@google.com CREATED:20200424T013616Z DESCRIPTION: @@ -146,23 +146,9 @@ SUMMARY:Learning Representation for Cybersecurity TRANSP:OPAQUE END:VEVENT BEGIN:VEVENT -DTSTART:20200430T000000Z -DTEND:20200430T020000Z -DTSTAMP:20200426T001610Z -UID:6epmruv58nh7hl1gl8dcc7jgi6@google.com -CREATED:20200424T013548Z -DESCRIPTION: -LAST-MODIFIED:20200424T013548Z -LOCATION: -SEQUENCE:0 -STATUS:CONFIRMED -SUMMARY:Learning Representation for Cybersecurity -TRANSP:OPAQUE -END:VEVENT -BEGIN:VEVENT DTSTART:20200429T180000Z DTEND:20200429T200000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:1c8n9tf4d6lkv5ui0j7l7r9a6o@google.com CREATED:20200424T013450Z DESCRIPTION: @@ -176,7 +162,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T160000Z DTEND:20200430T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:31m3p7e2bashcb1po0j97hp8kc@google.com CREATED:20200422T234633Z DESCRIPTION: @@ -190,7 +176,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T160000Z DTEND:20200429T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:2qq06d54861sn400snl8gvf89k@google.com CREATED:20200422T234458Z DESCRIPTION: @@ -204,7 +190,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T190000Z DTEND:20200429T210000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:0faouplj9959p1g9d96f56inln@google.com CREATED:20200422T234049Z DESCRIPTION: @@ -218,7 +204,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T230000Z DTEND:20200429T010000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6gep41od6hcslcgulp1vmskbft@google.com CREATED:20200421T200636Z DESCRIPTION: @@ -232,7 +218,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T010000Z DTEND:20200430T030000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:3c4r5viutomlq30equv3c06p4u@google.com CREATED:20200421T200835Z DESCRIPTION: @@ -246,7 +232,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T160000Z DTEND:20200429T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:5mu414a3jesu0dml6fsfclobcj@google.com CREATED:20200421T200712Z DESCRIPTION: @@ -260,7 +246,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T170000Z DTEND:20200430T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:4lko1mfkjulasub5nutou507h3@google.com CREATED:20200421T200547Z DESCRIPTION: @@ -274,7 +260,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T160000Z DTEND:20200428T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6c27dn4fkd69lvidd1sv1pb7sb@google.com CREATED:20200421T200526Z DESCRIPTION: @@ -288,7 +274,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T160000Z DTEND:20200428T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:0basoj37onmoj4tgaei8ul0q2u@google.com CREATED:20200421T200424Z DESCRIPTION: @@ -302,7 +288,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T160000Z DTEND:20200430T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:37cps7dt58orehso381umh95j1@google.com CREATED:20200421T200223Z DESCRIPTION: @@ -316,7 +302,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T230000Z DTEND:20200501T010000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:0jfmrnhm3afvqo76c2pauek7q6@google.com CREATED:20200421T200019Z DESCRIPTION: @@ -330,7 +316,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T160000Z DTEND:20200429T180000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:476nmq94flumfq4d222e83kfis@google.com CREATED:20200421T195926Z DESCRIPTION: @@ -344,7 +330,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T170000Z DTEND:20200430T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:44uv28i7mrma21e6vcmrv5d73b@google.com CREATED:20200421T195806Z DESCRIPTION: @@ -358,7 +344,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T170000Z DTEND:20200429T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:3p0fmn57a7quj58t6b67evigi5@google.com CREATED:20200421T195626Z DESCRIPTION: @@ -372,7 +358,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T190000Z DTEND:20200430T193000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:5cbo4frcngd9gfel82cuoeeb15@google.com CREATED:20200403T183717Z DESCRIPTION: @@ -386,7 +372,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T160000Z DTEND:20200430T163000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6ijpjimis2o3ppuaivoanh4u02@google.com CREATED:20200403T183637Z DESCRIPTION: @@ -400,7 +386,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T110000Z DTEND:20200429T113000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:0o84mkglf19g7gvqiu6m5vf39v@google.com CREATED:20200403T183530Z DESCRIPTION: @@ -414,7 +400,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T160000Z DTEND:20200429T163000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:0tdhatf7mvade7867f4guurv2k@google.com CREATED:20200403T183552Z DESCRIPTION: @@ -428,7 +414,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T140000Z DTEND:20200428T143000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:7gfkqo5pgae9qs6g9ddl0f18vm@google.com CREATED:20200403T183419Z DESCRIPTION: @@ -442,7 +428,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T190000Z DTEND:20200428T193000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:3jvrbibms14ujt7db3hv5gvugs@google.com CREATED:20200403T183444Z DESCRIPTION: @@ -456,7 +442,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T200000Z DTEND:20200430T220000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:26uiib1mhqoqtqoi7fts7n8ak7@google.com CREATED:20200401T183550Z DESCRIPTION: @@ -471,7 +457,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T170000Z DTEND:20200430T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:74ac2lan2458h5o4enikjd19vd@google.com CREATED:20200401T183516Z DESCRIPTION: @@ -486,7 +472,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T120000Z DTEND:20200430T140000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:2cv0sl2ro6jrfgdm15ebdfn3i9@google.com CREATED:20200401T183439Z DESCRIPTION: @@ -501,7 +487,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T080000Z DTEND:20200430T100000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6sr7ek9ul2dvlm3sui00n18buo@google.com CREATED:20200401T183401Z DESCRIPTION: @@ -516,7 +502,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200430T050000Z DTEND:20200430T070000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:33usnj4q37f0i4tj77rg1rh1fn@google.com CREATED:20200401T162343Z DESCRIPTION: @@ -531,7 +517,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T200000Z DTEND:20200429T220000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:5vb27q38eeikdr8ong75nhup1p@google.com CREATED:20200401T183538Z DESCRIPTION: @@ -546,7 +532,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T170000Z DTEND:20200429T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:13mtstttqnmdeh4ge8udgg8kf1@google.com CREATED:20200401T183505Z DESCRIPTION: @@ -561,7 +547,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T120000Z DTEND:20200429T140000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:678osj4qe4tcb4km0runcq7rr7@google.com CREATED:20200401T183427Z DESCRIPTION: @@ -576,7 +562,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T080000Z DTEND:20200429T100000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:3uqae2chf6ordkmhs8qjrc9dn8@google.com CREATED:20200401T183348Z DESCRIPTION: @@ -591,7 +577,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200429T050000Z DTEND:20200429T070000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:3dt2n62spidsmhf7simvj85s1b@google.com CREATED:20200401T162247Z DESCRIPTION: @@ -606,7 +592,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T200000Z DTEND:20200428T220000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6ucntpdakf01imbglvpi8o84ob@google.com CREATED:20200401T183528Z DESCRIPTION: @@ -621,7 +607,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T170000Z DTEND:20200428T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:19d2j4jrlharu1vkvt20mu1n6b@google.com CREATED:20200401T183451Z DESCRIPTION: @@ -636,7 +622,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T120000Z DTEND:20200428T140000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:40f8gdbtl1nkb9um00gv28g1sq@google.com CREATED:20200401T183415Z DESCRIPTION: @@ -651,7 +637,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T080000Z DTEND:20200428T100000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:3ou9ne2sf02gste81eq0aoos1f@google.com CREATED:20200401T183331Z DESCRIPTION: @@ -666,7 +652,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200428T050000Z DTEND:20200428T070000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:00br5g5p4p54gvtedmu247ubmr@google.com CREATED:20200401T162220Z DESCRIPTION: @@ -681,7 +667,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T200000Z DTEND:20200427T220000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:5sd4oi6i7dpdiglghnkdnc1q4h@google.com CREATED:20200401T162819Z DESCRIPTION: @@ -696,7 +682,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T190000Z DTEND:20200427T193000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:21clt6rtu5sdc9bv9r69qe1uln@google.com CREATED:20200403T183354Z DESCRIPTION: @@ -710,7 +696,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T170000Z DTEND:20200427T190000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:7fk2omsjpv3c3e16v1cp10e3ru@google.com CREATED:20200401T162750Z DESCRIPTION: @@ -725,7 +711,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T140000Z DTEND:20200427T143000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:7aqoi7euhmjguqujsfa9eq7lvl@google.com CREATED:20200403T160422Z DESCRIPTION: @@ -739,7 +725,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T120000Z DTEND:20200427T140000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:6sp7iritkvpksb7uuorjc3qrsk@google.com CREATED:20200401T162726Z DESCRIPTION: @@ -754,7 +740,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T080000Z DTEND:20200427T100000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:60meq3m9u5jpht30lsfs29km6p@google.com CREATED:20200401T162459Z DESCRIPTION: @@ -769,7 +755,7 @@ END:VEVENT BEGIN:VEVENT DTSTART:20200427T050000Z DTEND:20200427T070000Z -DTSTAMP:20200426T001610Z +DTSTAMP:20200427T032919Z UID:52kg9jc0okas1n05al9igvcm5h@google.com CREATED:20200401T161212Z DESCRIPTION: diff --git a/static/css/main.css b/static/css/main.css index 9752edff1..b95db38d0 100644 --- a/static/css/main.css +++ b/static/css/main.css @@ -148,6 +148,10 @@ div.anchor { box-shadow: rgb(204, 204, 204) 2px 2px 14px 0px; } +tr.fc-list-item { + cursor: pointer; +} + .details { font-family: 'Lato', sans-serif; } diff --git a/templates/pages/schedule.html b/templates/pages/schedule.html index 398294bbc..45381185a 100644 --- a/templates/pages/schedule.html +++ b/templates/pages/schedule.html @@ -86,7 +86,7 @@
@@ -135,7 +135,7 @@

- {{speaker.abstract}} + {{speaker.abstract|safe}}
@@ -149,7 +149,7 @@

{% for s in base.section %}