{% set hide_left_bar = True %} {% extends g.theme.master %} {% block title %}{{c.user.username}} / Skills{% endblock %} {% block header %}Skills manager for {{c.user.username}} {% endblock %} {% block content %}
{% if c.user.get_skills()|length > 0 %}

Your current skills list:

{% for s in c.user.get_skills() %} {{g.theme.remove_user_skill.display(skill=s)}} {% endfor %}
Skill Level Comments Actions
{% else %}

At the moment, your skills list is empty!

You can set your skills so that other users will be able to know what you can do best. To do it, you just need to choose the options that best fit your skills in the section below. You can also specify your skill level and some additional free comments.
{% endif %}

Add a new skill

{% if selected_skill %}
You selected:
List of all skills {% for cat in parents %} > {{cat.fullname}} {% endfor %} > {{selected_skill.fullname}}
{% endif %} {% if skills_list %} {% if selected_skill %}

Select a subcategory of "{{selected_skill.fullname}}"

{% else %}

Select a category

{%endif%} {{g.theme.select_subcategory_form.display(categories=skills_list)}} {% endif %} {% if selected_skill %}

Add "{{selected_skill.fullname}}" to you set of skills

{{g.theme.add_user_skill.display(selected_skill=selected_skill.trove_cat_id, action="/auth/prefs/user_skills/" + selected_skill.shortname + "/save_skill")}} {% endif %}

Other possible actions

{% endblock %}