{{ _('Where is Mozilla?') }}
{% trans %}
Here you can see some of the developer events at which Mozilla will be
participating, and the topics on which our Mozillians will be speaking.
If you are organizing an event and would like a Mozillian to
participate, please file a bug.
If you are a Mozillian speaking at an event that's not listed here, or
if an existing event entry needs updating, let us know!
You can also check out the Mozilla Reps events
page to find a Mozilla Reps event near you!
{% endtrans %}
{% if waffle.flag('events_map') %}
{% endif %}
{{ _('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 %}