117 lines
4.6 KiB
HTML
Executable File
117 lines
4.6 KiB
HTML
Executable File
{% extends 'layout.html' %}
|
||
{% block page_title %}About{% endblock %}
|
||
{% block body %}
|
||
|
||
{% if current_user.is_authenticated() %}
|
||
|
||
<div class="box row">
|
||
<div class="col-md-6">
|
||
<h2>Hi {{ current_user.first_name }}!</h2>
|
||
<p>
|
||
{% if current_user.has_role('bfct_trainer') %}
|
||
You're an official <span class="info">Blender Foundation Certified Trainer</span>
|
||
{% endif %}
|
||
</p>
|
||
{% if application %}
|
||
<hr class="width-full"/>
|
||
<p>
|
||
Status:
|
||
<strong class="text-transform-capitalize">
|
||
{% if application.status == 'approved' %}
|
||
<span class="success">Approved <i class="fa fa-check"></i></span>
|
||
{% elif application.status == 'under_review' %}
|
||
<span class="info">Under Review <i class="fa fa-clock-o"></i></span>
|
||
{% elif application.status == 'submitted' %}
|
||
<span class="info">Submitted</span>
|
||
{% endif %}
|
||
</strong>
|
||
{% if application.renewal_date %}
|
||
<br/>
|
||
Expires on <strong class="danger">{{ application.renewal_date.strftime('%B %d, %Y') }}</strong>
|
||
{% endif %}
|
||
</p>
|
||
{% endif %}
|
||
</div>
|
||
<div class="col-md-6">
|
||
<img src="{{ url_for('static', filename='assets/images/bfct_logo_wide.png') }}" class="img-responsive margin-top-4" />
|
||
</div>
|
||
<i class="backicon fa fa-graduation-cap"></i>
|
||
</div>
|
||
<div class="box row">
|
||
<div class="col-md-6">
|
||
<h2>Frequently Asked Questions</h2>
|
||
<ul class="list-margin-none list-margin-bottom-4 margin-top-4">
|
||
<li><strong>As a BFCT, is it possible to provide BFCT status to others?</strong><br/>
|
||
No. The BFCT status is only given by the BFCT board. And only valid when the user has a BFCT tag in his/her Blender Network’s profile.
|
||
</li>
|
||
<li><strong>Can I certify my students?</strong><br/>
|
||
You’re free to give your students your seal of approval. Not the Blender Network nor the Blender Foundation will certify students approved by a BFCT.
|
||
</li>
|
||
<li><strong>What happens when my certification expires?</strong><br/>
|
||
After a full year of your approval, you'll be required to confirm your BFCT status by submitting a new application.
|
||
</li>
|
||
<li><strong>Why does it expire after one year?</strong><br/>
|
||
Blender is constantly growing, releasing several new versions every year. We need to make sure that all the official trainers are up-to-date with the latest Blender development and features.
|
||
</li>
|
||
</ul>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<h2>Logo Usage</h2>
|
||
<p>
|
||
A certification is <strong>only</strong> valid when the trainer has an active profile on the <a href="https://www.blendernetwork.org">Blender Network</a>.
|
||
If you use the certification logo (below), please link the image to your Blender Network profile URL.</p>
|
||
|
||
<a href="http://download.blender.org/institute/certification_logo.zip">
|
||
<img src="{{ url_for('static', filename='assets/images/bfct_logo_variations.png') }}" class="img-responsive" />
|
||
</a>
|
||
</p>
|
||
</div>
|
||
<i class="backicon bf-network"></i>
|
||
</div>
|
||
{% else %}
|
||
|
||
<div class="row">
|
||
<div class="col-md-6">
|
||
<h2>What is the BFCT?</h2>
|
||
<p>BFCT is the Blender Foundation’s official certified trainers program.This membership is renewed annually, along with updated knowledge on new topics Blender might cover.</p>
|
||
|
||
<p>The goals of the BFCT program are:</p>
|
||
|
||
<ul class="list-margin-none">
|
||
<li>Provide a standard for Certification for everyone who is interested in teaching Blender professionally</li>
|
||
<li>Help experienced Blender artists and developers to get into training business</li>
|
||
<li>Increase the quality and quantity of Blender training worldwide</li>
|
||
</ul>
|
||
</div>
|
||
<div class="col-md-6">
|
||
<h2>Training areas</h2>
|
||
<p>A certified trainer should target at least one of the following audiences:</p>
|
||
<ul class="list-margin-none margin-bottom-2">
|
||
<li>Corporations who want employees trained in Blender</li>
|
||
<li>School/College/University teachers who want to integrate Blender in classes</li>
|
||
<li>Individual 3D artists who want to become trained in Blender</li>
|
||
</ul>
|
||
<p>A certified trainer cannot give BFCT status to people who have attended their classes, however they are fully free to define their own courses or own student certification programs.</p>
|
||
</div>
|
||
</div>
|
||
<div class="row">
|
||
<div class="col-md-6">
|
||
<h2>Certified Trainers <i class="icon-bookmark"></i></h2>
|
||
Over 40+ trainers spread on 5 continents.
|
||
|
||
The current list of certified trainers can be seen at the <a href="https://www.blendernetwork.org/members" target="_blank">Blender Network</a>.
|
||
|
||
</div>
|
||
<div class="col-md-6">
|
||
<h2>Become a Trainer</h2>
|
||
<p>Thinking of join the team?</p>
|
||
|
||
<p>Read about how to <a title="Become a Trainer" href="{{url_for('become_a_trainer')}}">become a certified trainer</a></p>
|
||
|
||
</div>
|
||
</div>
|
||
{% endif %}
|
||
|
||
{% endblock %}
|
||
|