{% extends 'base.html' %} {% block content %}

{% trans "Job Offer" %} : {{ offer.title }}

{{ offer.pub_date }}

{% trans "Job presentation" %}

{{ offer.type }}
{{ offer.job_desc|safe }}

{% trans "Profile" %}

{{ offer.job_profile|safe }}

{% if offer.more_informations %}

{% trans "More informations" %}

{{ offer.more_informations|safe }}

{% endif %}

{% trans "Place" %}

{{ offer.company_name }}
{{ offer.zip }} {{ offer.city }}

{% trans "Date of beginning" %}

{% if offer.begin_date %} {{ offer.begin_date }} {% else %} {% trans "Not know" %} {% endif %}

{% endblock %}