{% extends "core/base.html" %} {% load static %} {% block title %}{{ profile.title }} - Identity Record{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{% if profile %}
{% if profile.profile_image %} {{ profile.title }}
{% else %}
{% endif %}

{{ profile.title }}

{{ profile.subtitle }}

{{ profile.bio_intro }}

{{ profile.bio_content }}

Neural Link History

{% for exp in experiences %}
{{ exp.start_date|date:"Y.m" }} - {% if exp.is_current or not exp.end_date %} PRESENT {% else %} {{ exp.end_date|date:"Y.m" }} {% endif %}

{{ exp.job_title }}

{{ exp.company }} {% if exp.location %} · {{ exp.location }}{% endif %}
{{ exp.description }}
{% if exp.is_current %} ◆ ACTIVE LINK {% endif %}
{% endfor %}

Upload History

{% for edu in educations %}

{{ edu.degree }}

{{ edu.institution }}
{{ edu.year_start }} {% if edu.year_end %} - {{ edu.year_end }} {% else %} - EN COURS {% endif %}
{% if edu.description %}
{{ edu.description }}
{% endif %}
{% endfor %}

Core Directives

{% for phil in philosophies %}

{{ phil.title }}

{% endfor %}
{% if profile.vision_text %}

{{ profile.vision_title }}

{{ profile.vision_text }}
{% endif %}

Skill Matrix

{% for category in skill_categories %}

{{ category.name }}

{% for skill in category.skills.all %}
{{ skill.name }} {{ skill.level }}%
{% endfor %}
{% endfor %}
{% else %}

[ IDENTITY RECORD NOT FOUND ]

Configuration About Profile manquante. Veuillez accéder au panneau d'administration.

{% endif %}
{% endblock %}