{% if cal %}
{% endif %}
{% if conferences %}
| Start | CFP | CoC | A11y | Videos? | What | Where |
{% for c in conferences %}
| {{ c['event_start'] }} |
{{ c['cfp_end'] }} |
{% if c['code_of_conduct'] %}{% endif %} |
{% if c['accessibility'] %}{% endif %} |
{% if c['youtube'] %}{% endif %} |
{{ c['name'] }} |
{{ c['location']['city'] }}, {% if c['location']['state'] %}{{ c['location']['state'] }}, {% endif %} {{ c['location']['country'] }} |
{% endfor %}
{% endif %}
{% if earlier_conferences %}
Earlier events
| Start | CFP | CoC | A11y | Videos? | What | Where |
{% for c in earlier_conferences %}
| {{ c['event_start'] }} |
{{ c['cfp_end'] }} |
{% if c['code_of_conduct'] %}{% endif %} |
{% if c['accessibility'] %}{% endif %} |
{% if c['youtube'] %}{% endif %} |
{{ c['name'] }} |
{{ c['location']['city'] }}, {% if c['location']['state'] %}{{ c['location']['state'] }}, {% endif %} {{ c['location']['country'] }} |
{% endfor %}
{% endif %}
{% if videos %}
Videos
{% endif %}
{% if episodes %}
Podcasts
{% endif %}
{% include 'incl/footer.html' %}