2022-11-27 07:03:38 +00:00
|
|
|
{% extends "user/base-users-two-col.html" %}
|
2020-01-21 06:35:58 +00:00
|
|
|
|
2022-11-27 07:03:38 +00:00
|
|
|
{% block left_sidebar %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% include "contest/contest-tabs.html" %}
|
2020-01-21 06:35:58 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block users_media %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% include "contest/ranking-css.html" %}
|
2020-01-21 06:35:58 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block users_js_media %}
|
2023-11-27 00:05:19 +00:00
|
|
|
{% include "contest/contest-datetime-js.html" %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% if can_edit %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
|
|
$('a.disqualify-participation').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
if (e.ctrlKey || e.metaKey || confirm("{{ _('Are you sure you want to disqualify this participation?') }}"))
|
|
|
|
$(this).closest('form').submit();
|
|
|
|
})
|
|
|
|
$('a.un-disqualify-participation').click(function (e) {
|
|
|
|
e.preventDefault();
|
|
|
|
if (e.ctrlKey || e.metaKey || confirm("{{ _('Are you sure you want to un-disqualify this participation?') }}"))
|
|
|
|
$(this).closest('form').submit();
|
|
|
|
})
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
{% if perms.judge.change_contestparticipation %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
|
|
$('td.user').find('a.user-name').click(function (e) {
|
|
|
|
var data = $(this).siblings('.edit-participation');
|
|
|
|
if (e.altKey && data.length) {
|
|
|
|
window.open(data.attr('data-link'), '_blank');
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
{% if not contest.ended %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$(function () {
|
|
|
|
window.install_tooltips = function () {
|
|
|
|
$('td.user').find('a.user-name').each(function () {
|
|
|
|
var link = $(this);
|
|
|
|
link.mouseenter(function (e) {
|
|
|
|
var start_time = link.siblings('.start-time').text();
|
|
|
|
link.addClass('tooltipped tooltipped-e').attr('aria-label', start_time);
|
|
|
|
}).mouseleave(function (e) {
|
|
|
|
link.removeClass('tooltipped tooltipped-e').removeAttr('aria-label');
|
2020-01-21 06:35:58 +00:00
|
|
|
});
|
2023-01-27 23:11:10 +00:00
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
install_tooltips();
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
{% if page_type == 'ranking' or page_type == 'final_ranking' %}
|
|
|
|
<script type="text/javascript">
|
|
|
|
$.fn.ignore = function(sel) {
|
|
|
|
return this.clone().find(sel || '>*').remove().end();
|
|
|
|
};
|
|
|
|
|
|
|
|
function download_ranking_as_csv() {
|
|
|
|
function clean_text(text) {
|
|
|
|
// Remove new line and leading/trailing spaces
|
|
|
|
text = text.replace(/(\r\n|\n|\r)/gm, '').trim();
|
|
|
|
// Escape double-quote with double-double-quote
|
|
|
|
text = text.replace(/"/g, '""');
|
|
|
|
|
|
|
|
return '"' + text + '"';
|
|
|
|
}
|
|
|
|
|
|
|
|
var csv = [];
|
|
|
|
|
|
|
|
$('table#users-table thead tr').each(function () {
|
|
|
|
var header = [];
|
|
|
|
$(this).find('th').each(function () {
|
|
|
|
var $col = $(this);
|
|
|
|
|
|
|
|
if ($col.hasClass('rating-column')) {
|
|
|
|
return;
|
|
|
|
} else if ($col.hasClass('problem-score-col')) {
|
|
|
|
header.push(clean_text($col.find('.problem-code').text()));
|
|
|
|
} else {
|
|
|
|
header.push(clean_text($col.text()));
|
2022-10-08 10:55:34 +00:00
|
|
|
}
|
2023-01-27 23:11:10 +00:00
|
|
|
});
|
|
|
|
csv.push(header.join(','));
|
|
|
|
});
|
|
|
|
|
|
|
|
$('table#users-table tbody tr').each(function () {
|
|
|
|
var row_data = [];
|
|
|
|
|
|
|
|
$(this).find('td').each(function () {
|
|
|
|
var $col = $(this);
|
|
|
|
if ($col.hasClass('rating-column')) {
|
|
|
|
return;
|
|
|
|
} else if ($col.hasClass('user-name')) {
|
|
|
|
row_data.push(clean_text($col.ignore('.fullname').ignore('.school').text()));
|
|
|
|
row_data.push(clean_text($col.ignore('.user').ignore('.school').text()));
|
|
|
|
row_data.push(clean_text($col.ignore('.user').ignore('.fullname').text()));
|
|
|
|
} else {
|
|
|
|
row_data.push(clean_text($col.ignore('.solving-time').text()));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
csv.push(row_data.join(','));
|
|
|
|
});
|
|
|
|
|
|
|
|
csv = csv.join('\n');
|
|
|
|
var filename = '{{ contest.key }}_' + moment().format('MMMM Do YYYY, h:mm:ss a'); + '.csv';
|
|
|
|
var link = document.createElement('a');
|
|
|
|
link.style.display = 'none';
|
|
|
|
link.setAttribute('target', '_blank');
|
|
|
|
link.setAttribute('href', 'data:text/csv;charset=utf-8,\uFEFF' + encodeURIComponent(csv));
|
|
|
|
link.setAttribute('download', filename);
|
|
|
|
document.body.appendChild(link);
|
|
|
|
link.click();
|
|
|
|
document.body.removeChild(link);
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
{% endif %}
|
|
|
|
{% include "contest/media-js.html" %}
|
2020-01-21 06:35:58 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
2022-11-27 07:03:38 +00:00
|
|
|
{% block before_table %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% include "contest/contest-datetime.html" %}
|
2024-02-05 21:15:32 +00:00
|
|
|
{% if page_type == 'participation' %}
|
|
|
|
{% if contest.can_see_full_scoreboard(request.user) %}
|
|
|
|
<div style="margin-bottom: 0.5em">
|
2023-01-27 23:11:10 +00:00
|
|
|
<input id="search-contest" type="text" placeholder="{{ _('View user participation') }}">
|
2024-02-05 21:15:32 +00:00
|
|
|
</div>
|
2023-01-27 23:11:10 +00:00
|
|
|
{% endif %}
|
2024-06-25 05:23:40 +00:00
|
|
|
{% else %}
|
|
|
|
<div style="margin-bottom: 0.5em">
|
|
|
|
<input id="show-schools-checkbox" type="checkbox" style="vertical-align: bottom">
|
|
|
|
<label for="show-schools-checkbox" style="vertical-align: bottom; margin-right: 1em;">{{ _('Show schools') }}</label>
|
|
|
|
|
|
|
|
<input id="show-fullnames-checkbox" type="checkbox" style="vertical-align: bottom">
|
|
|
|
|
|
|
|
<label for="show-fullnames-checkbox" style="vertical-align: bottom; margin-right: 1em;">{{ _('Show full name') }}</label>
|
|
|
|
{% if request.user.is_authenticated %}
|
|
|
|
<input id="show-friends-checkbox" type="checkbox" style="vertical-align: bottom;" {{"checked" if friend_only}}>
|
|
|
|
<label for="show-friends-checkbox" style="vertical-align: bottom; margin-right: 1em;">{{ _('Show friends only') }}</label>
|
|
|
|
{% endif %}
|
|
|
|
<input id="show-total-score-checkbox" type="checkbox" style="vertical-align: bottom; ">
|
|
|
|
<label for="show-total-score-checkbox" style="vertical-align: bottom; margin-right: 1em;">{{ _('Total score only') }}</label>
|
|
|
|
<input id="show-virtual-checkbox" type="checkbox" style="vertical-align: bottom;" {{"checked" if include_virtual}}>
|
|
|
|
<label id="show-virtual-label" for="show-virtual-checkbox" style="vertical-align: bottom; margin-right: 1em;">{{ _('Show virtual participation') }}</label>
|
|
|
|
<i class="fa fa-spinner fa-pulse" style="display: none" id="loading-gif"></i>
|
|
|
|
<a href="#" onclick="download_ranking_as_csv()">
|
|
|
|
<i class="fa fa-download" aria-hidden="true"></i>
|
|
|
|
{{ _('Download as CSV') }}
|
|
|
|
</a>
|
|
|
|
</div>
|
2024-02-05 21:15:32 +00:00
|
|
|
{% endif %}
|
2022-11-27 07:03:38 +00:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block users_table %}
|
2023-01-27 23:11:10 +00:00
|
|
|
{% include "contest/ranking-table.html" %}
|
2022-10-08 10:55:34 +00:00
|
|
|
{% endblock %}
|