2021-12-28 16:17:07 +01:00
|
|
|
{# -*- mode: jinja-html -*- #}
|
2021-12-03 11:03:33 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
{% import 'bootstrap/wtf.html' as wtf %}
|
|
|
|
|
|
|
|
{% block app_content %}
|
|
|
|
<h1>Charger un référentiel de compétences</h1>
|
|
|
|
|
|
|
|
<div class="row">
|
2022-02-12 20:25:22 +01:00
|
|
|
<div class="col-md-5">
|
2021-12-03 11:03:33 +01:00
|
|
|
{{ wtf.quick_form(form) }}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2022-02-12 20:25:22 +01:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-5">
|
|
|
|
<ul>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url_for('notes.refcomp_table', scodoc_dept=g.scodoc_dept, ) }}">
|
|
|
|
Liste des référentiels de compétences chargés</a>
|
|
|
|
</li>
|
|
|
|
<li>
|
|
|
|
<a href="{{ url_for('notes.refcomp_assoc_formation', scodoc_dept=g.scodoc_dept, formation_id=formation.id) }}">
|
|
|
|
Association à la formation {{ formation.acronyme }}</a>
|
|
|
|
</li>
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-12-03 11:03:33 +01:00
|
|
|
|
|
|
|
{% endblock %}
|