{% extends "base.html" %} {% load crispy_forms_tags %} {% block content %}
QSOs by {{ owner }}

{{ owner }} {% if owner.ref %}is registeret at {{ owner.ref }}{% else %}has not registered an exchange{% endif %} and {% if owner.cat %}is in category {{ owner.cat }}{% else %}has not selected a category{% endif %}.

{% with claimed=owner.calcClaimedPoints cfmd=owner.calcCfmdPoints %} Claimed: Score with {{ claimed.qsoCount}} QSO{{ claimed.qsoCount|pluralize }} * {{ claimed.refCount }} EXC{{ claimed.refCount|pluralize }} = {{ claimed.points }}; Cfmd: Score with {{ cfmd.qsoCount}} QSO{{ cfmd.qsoCount|pluralize }} * {{ cfmd.refCount }} EXC{{ cfmd.refCount|pluralize }} = {{ cfmd.points }} {% endwith %}

{% include "contest/qsoAdminTable.html" with qsoPage=qsoPage qsoPager=qsoPager %}
{% endblock %}