Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add group diners #527

Merged
merged 4 commits into from
Jul 29, 2024
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added static/images/diner.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
51 changes: 38 additions & 13 deletions templates/sections/schedule.html
Original file line number Diff line number Diff line change
Expand Up @@ -67,21 +67,31 @@ <h4 class="schedule__track mb-4">Side track</h4>
<ol class="schedule__list">
{% for activity in day.side %}
{% include "partials/activity-card.html" %}
{% if is_day1 and loop.last %}
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:00 - Karaoke – let's sing!</h3>
<p>The EuroRust team reserved 30 spots at the Karaoke bar <a href="https://www.babuders.at" target="_blank">Babuder's</a> for Rustaceans who like to sing after the first conference day 🧑‍🎤.</p>
</div>
<div class="closing-party__image">
<div class="closing-party__image-overlay"></div>
<img class="image-party" src="/images/karaoke.jpg" alt="boy singing into a microphone"/>
</div>
</div>
{% endif %}
{% endfor %}
</ol>
</div>
{% if loop.first %}
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:00: Karaoke – let's sing!</h3>
<p>The EuroRust team reserved 30 spots at the Karaoke bar <a href="https://www.babuders.at" target="_blank">Babuder's</a> for Rustaceans who like to sing after the first conference day 🧑‍🎤.</p>
</div>
<div class="closing-party__image">
<div class="closing-party__image-overlay"></div>
<img class="image-party" src="/images/karaoke.jpg" alt="boy singing into a microphone"/>
</div>
</div>
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:30: Group Diners – Meet & Eat!</h3>
<p>We made reservations in a bunch of restaurants in the city. Sign up for one of them (registration is open during the first conference day, October 10th) and have diner with fellow Rustaceans 🍕🥗🥘!</p>
</div>
<div class="closing-party__image">
<div class="closing-party__image-overlay"></div>
<img class="image-party" src="/images/diner.jpg" alt="boy singing into a microphone"/>
</div>
</div>
{% endif %}
{% if loop.last %}
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
Expand Down Expand Up @@ -139,7 +149,7 @@ <h3 class="large mb-2">18:00 - Closing Party</h3>
<td colspan="2">
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:00 Karaoke – let's sing!</h3>
<h3 class="large mb-2">19:00: Karaoke – let's sing!</h3>
<p>The EuroRust team reserved 30 spots at the Karaoke bar <a href="https://www.babuders.at" target="_blank">Babuder's</a> for Rustaceans who like to sing after the first conference day 🧑‍🎤.</p>
</div>
<div class="closing-party__image">
Expand All @@ -149,6 +159,21 @@ <h3 class="large mb-2">19:00 Karaoke – let's sing!</h3>
</div>
</td>
</tr>
<tr>
<td class="visually-hidden">19:00</td>
<td colspan="2">
<div class="closing-party closing-party__grid schedule__shared">
<div class="closing-party__content">
<h3 class="large mb-2">19:30: Group Diners – Meet & Eat!</h3>
marcoow marked this conversation as resolved.
Show resolved Hide resolved
<p>We made reservations in a bunch of restaurants in the city. Sign up for one of them (registration is open during the first conference day, October 10th) and have diner with fellow Rustaceans 🍕🥗🥘!</p>
</div>
<div class="closing-party__image">
<div class="closing-party__image-overlay"></div>
<img class="image-party" src="/images/diner.jpg" alt="boy singing into a microphone"/>
</div>
</div>
</td>
</tr>
{% endif %}
{% endfor %}
{% if loop.last %}
Expand Down