{% extends 'layout.html' %} {% block page_title %}Submit Application{% endblock %} {% block body %}

Submit your Application


{{ form.hidden_tag() }}
{{ form.network_profile(class='form-control', placeholder='e.g. http://blendernetwork.org/') }}
{{ form.website(class='form-control', placeholder='e.g. http://www.yourname.me') }} {% if form.website.errors %}
    {% for error in form.website.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}
{{ form.city_country(class='form-control', placeholder='Where do you currently live/teach?') }} {% if form.city_country.errors %}
    {% for error in form.city_country.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

Are you currently teaching at an institution?

{{ form.institution_name(class="form-control", placeholder="University / School / Institution's name") }}

Select which skills you focus on for teaching.
(hold Ctrl for multiple selections)

{{ form.skills(class='form-control') }}

Provide a video (or a list of videos) that show your talking and training skills at their best.

{{ form.video_example(class='form-control', placeholder='URL to a Video Example') }} {% if form.video_example.errors %}
    {% for error in form.video_example.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

Link us a tutorial (or a list/guide) that show your writing skills at their best.

{{ form.written_example(class='form-control', placeholder='URL to a Written Example') }} {% if form.written_example.errors %}
    {% for error in form.written_example.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

The language for both the written/spoken tutorial(s) is up to you, but bare in mind it might require more time for us to review if it's not among the board's native languages.


{{ form.portfolio_cv(class='form-control', placeholder='URL of your Portfolio or CV. e.g: http://yourportfolio.me') }} {% if form.portfolio_cv.errors %}
    {% for error in form.portfolio_cv.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

{{ form.bio_message(class='form-control', id='editor1', placeholder='Tell us a bit about yourself and why you want to be a BFCT') }} {% if form.bio_message.errors %}
    {% for error in form.bio_message.errors %}
  • {{ error }}
  • {% endfor %}
{% endif %}

What happens when I apply?

Once we receive your application, the Blender Foundation Certification Board will proceed to review it. This may take some days.

You can come back to this page and check the status of your application anytime.

Once your application has been reviewed, you'll receive an e-mail with the results, and instructions on how to proceed.

{% endblock %} {% block footer_scripts %} {% endblock %}