{{ _('Where is Mozilla?') }}
{% trans %}
Here you can see where Mozilla will be in the near future and what we are going to talk about. If you organize an event and you want a Mozillian to come around, please send us an email. If you are a Mozillian speaking at an event that's not listed here, let us know!
{% endtrans %}
{{ _('Upcoming Conferences') }}
| {{ _('Start Date') }} |
{{ _('End Date') }} |
{{ _('Conference') }} |
{{ _('Location') }} |
{{ _('Attendees') }} |
{{ _('Description') }} |
{% for event in upcoming_events %}
| {{ event.date.strftime('%Y-%m-%d') }} |
{% if event.end_date %}{{ event.end_date.strftime('%Y-%m-%d') }}{% endif %} |
{% if event.conference_link %}
{{ event.conference }} |
{% else %}
{{ event.conference }} |
{% endif %}
{{ event.location }} |
{{ event.people|safe }} |
{{ event.description|safe }} |
{% endfor %}
{{ _('Past Conferences') }}
| {{ _('Start Date') }} |
{{ _('End Date') }} |
{{ _('Conference') }} |
{{ _('Location') }} |
{{ _('Attendees') }} |
{{ _('Description') }} |
{{ _('Presentation Materials') }} |
{% for event in past_events %}
| {{ event.date.strftime('%Y-%m-%d') }} |
{% if event.end_date %}{{ event.end_date.strftime('%Y-%m-%d') }}{% endif %} |
{{ event.conference }} |
{{ event.location }} |
{{ event.people|safe }} |
{{ event.description|safe }} |
{% if event.materials and event.materials != "n/a" %}Presentation Material{% endif %} |
{% endfor %}