Baustein "{{ obj.template.short_header }}" für {{obj.enrolment.pupil.last_name.upper()}} {{obj.enrolment.pupil.first_name}}
Leistung |
Punkte |
Mögliche Punkte |
Prozentsatz |
Periode |
{% for ps in rt.models.ratings.ProjectSection.objects.filter(project_template=obj.template) %}
{% set tot = ps.get_ratings_sum(obj.enrolment) %}
{{ ps.designation }} |
{{ tot.rating }} |
{{ tot.max_rating }} |
{{ tot }} |
|
{% for r in tot.ratings %}
{{ r.text }} |
{{ r.rating }} |
{{ r.max_rating }} |
{{ r }} |
{{ r.period.nickname }} |
{% endfor %}
{% endfor %}
{% set tot = obj.get_general_ratings() %}
{{ _("General ratings") }} |
{{ tot.rating }} |
{{ tot.max_rating }} |
{{ tot.value }} |
|
{% for r in tot.ratings %}
{{ r.text }} |
{{ r.rating }} |
{{ r.max_rating }} |
{{ r }} |
|
{% endfor %}
{% set tot = tot + obj.get_ratings_sum() %}
Summe |
{{tot.rating}} |
{{tot.max_rating}} |
{{tot}} |
Kommentar
|
{{ obj.remark }}
|