{% extends 'base.html' %} {% load i18n static %} {% block titletag %} {% trans 'PyCon Taiwan 2017' %} {% endblock titletag %} {% block content_full %} {% url 'page' path='speaking/cfp' as speaking_cfp_url %} {% url 'page' path='events/sprints' as events_sprint_url %} {% url 'page' path='events/tutorial' as events_tutorial_url %}

def future():

{% trans 'Volunteers Needed' %}

{% blocktrans %}Help us organize and make the conference successful! Please fill out our volunteer form.{% endblocktrans %}

{% blocktrans trimmed %}

what is pycon

The original PyCon was formed in North America in 2003, and now there are many other conferences being run in the PyCon spirit around the world.

{% endblocktrans %}
{% blocktrans trimmed %}

what is pycon taiwan

PyCon Taiwan is an annual convention in Taiwan for the discussion and promotion of the Python programming language. It is held by enthusiasts and focuses on Python technology and its versatile applications. We welcome people who are interested in Python to join PyCon Taiwan to share knowledge, exchange ideas, make connections and to help us grow our network.

{% endblocktrans %}

{% trans 'Python Communities in Taiwan' %}

{% regroup sponsors by level as sponsor_groups %}
{% for sponsor_group in sponsor_groups %}
{% for sponsor in sponsor_group.list %} {% if sponsor.website_url %} {% if sponsor.logo %} {{ sponsor.name }} {% else %} {{ sponsor.name }} {% endif %} {% else %} {% if sponsor.logo %} {{ sponsor.name }} {% else %} {{ sponsor.name }} {% endif %} {% endif %} {% endfor %}
{% endfor %}
{% endblock content_full %} {% block extrabody %} {% endblock extrabody %}