{% extends "layout.html" %}
{% load staticfiles %}
{% load i18n %}
{% block title %}{% trans 'Frequently asked question' %} | Stagii pe Bune{% endblock %}
{% block intro-title %}{% trans 'Frequently asked question' %}{% endblock %}
{% block content %}
<section class="section static-content">
<div class="container">
<article class="article">
<h1>{% trans 'Frequently asked question' %}</h1>
<section>
<h2>{% trans 'How much does an internship advertisment cost?' %}</h2>
<p>
{% url 'frontend:partnership' as partnership_url %}
{% blocktrans trimmed with partnership_url=partnership_url %}
The cost of publishing an internship opportunity is €250 plus tax.
Besides that, we have various additional
<a href="{{ partnership_url }}">promoting opportunities</a> available.
Please contact us for details.
{% endblocktrans %}
</p>
</section>
<section>
<h2>
{% blocktrans trimmed %}
Until last year, publishing an internship was free. Why do I have to pay now?
{% endblocktrans %}
</h2>
<p>
{% blocktrans trimmed %}
In the past few years we've invested a lot in rebuilding the software, the
initial version having been released in 2005.
As you know, quality software development is a costly venture.
{% endblocktrans %}
</p>
</section>
<section>
<h2>
{% blocktrans trimmed %}
When does the internship start, and how long does it take?
{% endblocktrans %}
</h2>
<p>
{% blocktrans trimmed %}
The mandatory internship period varies from university to university.
We advise that the internship period be of at least 2.5 months full time.
The internship should be held during the summer (after finals).
Due note that most faculties have supplementary exams in September.
{% endblocktrans %}
</p>
</section>
<section>
<h2>
{% blocktrans trimmed %}
My faculty is not in the list
{% endblocktrans %}
</h2>
<p>
{% blocktrans trimmed with support_email=settings.SUPPORT_EMAIL %}
Send us an <a href="mailto:{{ support_email }}">email</a> and we'll add it.
{% endblocktrans %}
</p>
</section>
<section>
<h2>
{% blocktrans trimmed %}
I found a bug
{% endblocktrans %}
</h2>
<p>
{% blocktrans trimmed with support_email=settings.SUPPORT_EMAIL %}
Might be a feature, but we appreciate it,
<a href="mailto:{{ support_email }}">let us know.</a>
{% endblocktrans %}
</p>
</section>
<section>
<h2>
{% blocktrans trimmed %}
I've got a new question for this list
{% endblocktrans %}
</h2>
<p>
{% blocktrans trimmed with support_email=settings.SUPPORT_EMAIL %}
Awesome! <a href="mailto:{{ support_email }}">Send it to us.</a>
{% endblocktrans %}
</p>
</section>
</article>
</div>
</section>
{% endblock %}