You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
858 B
38 lines
858 B
{% autoescape false %}
|
|
<h3>{{ 'Skills' | trans }}</h3>
|
|
<ul>
|
|
<li>
|
|
<a
|
|
href="{{ url('legacy_main', {'name' : 'skills/skill_profile.php'}) }}"
|
|
>
|
|
{{ 'Add profile' | trans }}
|
|
</a>
|
|
</li>
|
|
<li>
|
|
<a
|
|
href="{{ url('legacy_main', {'name' : 'skills/skill_level.php'}) }}"
|
|
>
|
|
{{ 'Add level' | trans }}
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
|
|
{% if form is defined %}
|
|
{{ form }}
|
|
{% endif %}
|
|
|
|
{% for item in list %}
|
|
<h4>
|
|
{{ item.name }}
|
|
{% if item.shortCode %}
|
|
({{ item.shortCode }})
|
|
{% endif %}
|
|
<a
|
|
href="{{ url('legacy_main', {'name' : 'skills/skill.php'}) ~ '?action=edit&id=' ~ item.id}}"
|
|
>
|
|
{{ 'pencil'|mdi_icon(22) }}
|
|
</a>
|
|
</h4>
|
|
{{ item.profile }}
|
|
{% endfor %}
|
|
{% endautoescape %}
|
|
|