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

{{ skill.short_label }}

{{ skill.notation }}

Détails

Notation : {{ skill.notation }}
Difficulty : {{ skill.difficulty }}
Level : {{ skill.level }}
Rank : {{ skill.level }}


{% if skill.prerequisites.all %}

Prerequisites

    {% if skill.prerequisites %} {% for prerequisites in skill.prerequisites.all %}
  • {{ prerequisites.short_label }}
  • {% endfor %} {% else %} No prerequisites defined. {% endif %}

Educatives

    {% if skill.educatives %} {% for educatives in skill.educatives.all %}
  • {{ educatives.short_label }}
  • {% endfor %} {% else %} No educative defined. {% endif %}
{% endif %}
{% if skill.informations %} {{ skill.to_markdown | safe }} {% endif %}
{% endblock %} {% block footerscript %} {% endblock %}