{# -*- mode: jinja-html -*- #}
{% extends "base.j2" %}
{% import 'wtf.j2' as wtf %}

{% block app_content %}
<h1>Associer un référentiel de compétences</h1>
<div class="help">
    Association d'un référentiel de compétence à la formation
    <a href="{{
        url_for('notes.ue_table', scodoc_dept=g.scodoc_dept, formation_id=formation.id)
    }}">{{formation.titre}} ({{formation.acronyme}})</a>
</div>
<div style="margin-top: 20px; margin-bottom: 20px;">

    Référentiel actuellement associé:
    {% if formation.referentiel_competence is not none %}
    <b>{{ formation.referentiel_competence.specialite_long }}</b>
    <a href="{{
            url_for('notes.refcomp_desassoc_formation', scodoc_dept=g.scodoc_dept, formation_id=formation.id)
        }}" class="stdlink">supprimer</a>
    {% else %}
    <b>aucun</b>
    {% endif %}
    <div class="row" style="margin-top: 20px;">
        <div class="col-md-4">
            {{ wtf.quick_form(form) }}
        </div>
    </div>
</div>

<div class="help">
    Pour charger un nouveau référentiel de compétences Orébut,
    <a href="{{url_for(
        'notes.refcomp_load', scodoc_dept=g.scodoc_dept, formation_id=formation.id)
    }}">passer par cette page</a>.
</div>

{% endblock %}