You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
693 B
HTML
32 lines
693 B
HTML
{% extends "admin/change_form.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% block after_field_sets %}
|
|
|
|
<!--
|
|
<p><b>{% trans "Participations:" %}</b></p>
|
|
<ul>
|
|
{% for activity in activities %}
|
|
<li><a href="{{ activity.get_absolute_url }}">{{ activity.name }}</a>, {{ activity.date }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% if perms.members.may_see_qualities %}
|
|
<p><b>{% trans "Qualities:" %}</b></p>
|
|
<table style="width:100%">
|
|
<tr>
|
|
<th>{% trans "Activity" %}</th>
|
|
<th>{% trans "Skill level" %}</th>
|
|
</tr>
|
|
{% for key, value in qualities.items %}
|
|
<tr>
|
|
<td>{{ key }}</td>
|
|
<td><progress value="{{ value }}" max="100"></progress></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
{% endif %}
|
|
-->
|
|
|
|
{% endblock %}
|