2017-01-26 19:14:58 +01:00
{% extends "base.html" %}
{% load crispy_forms_tags %}
{% block content %}
< div class = "row" >
< div class = "col-sm-12" >
< div class = "panel panel-default" >
< div class = "panel-heading" > QSOs by {{ owner }}< / div >
< div class = "panel-body" >
< p >
2017-01-26 21:11:20 +01:00
{{ owner }} {% if owner.ref %}is registeret at {{ owner.ref }}{% else %}has not registered an exchange{% endif %} and {% if owner.cat %}is in category < em > {{ owner.cat }}< / em > {% else %}has not selected a category{% endif %}.
< / p >
< p >
2017-01-28 18:39:00 +01:00
{% 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 %}
2017-01-26 19:14:58 +01:00
< / p >
{% include "contest/qsoAdminTable.html" with qsoPage=qsoPage qsoPager=qsoPager %}
< / div >
< / div >
< / div >
< / div >
{% endblock %}