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.
kompass_LK/jdav_web/members/templates/members/change_member.html

21 lines
429 B
HTML

{% extends "admin/change_form.html" %}
{% load i18n %}
{% load static %}
{% block after_field_sets %}
<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>
{% endblock %}