NDOJ/templates/contest/list.html

417 lines
14 KiB
HTML
Raw Normal View History

{% extends "two-column-content.html" %}
2020-01-21 06:35:58 +00:00
{% block meta %}
2023-01-27 23:11:10 +00:00
<meta name="description" content="The {{ SITE_NAME }}'s contest list - past, present, and future.">
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block two_col_media %}
2023-01-27 23:11:10 +00:00
<style>
2023-09-08 16:22:57 +00:00
.non-padding-top {
padding-top: 0;
}
2023-01-27 23:11:10 +00:00
.content-description ul {
padding: 0 !important;
}
2021-02-19 05:32:54 +00:00
2023-01-27 23:11:10 +00:00
.btn-contest {
display: inline-block;
padding: 1px 6px;
}
2021-02-19 05:32:54 +00:00
2023-01-27 23:11:10 +00:00
.contest-group-header {
padding-bottom: 1em;
}
2022-11-09 20:45:46 +00:00
2023-01-27 23:11:10 +00:00
{% if page_obj and page_obj.number > 1%}
#ongoing-table {
display: none;
}
{% endif %}
2021-02-19 05:32:54 +00:00
2023-01-27 23:11:10 +00:00
@media (max-width: 500px) {
#search-contest, #search-org, #search-btn {
width: 100%;
margin-bottom: 0.5em;
}
#search-contest {
height: 2.5em;
}
#search-btn {
margin-top: 0.5em;
}
#filter-form input {
padding-left: 8px;
}
}
2021-02-19 08:02:12 +00:00
2023-01-27 23:11:10 +00:00
@media (min-width: 500px) {
#filter-form input {
margin: 0 0.5em 0 0!important;
padding-left: 8px;
padding-top: 8px;
}
#search-contest {
width: 30%;
height: 2.3em;
margin-right: 1em;
margin-bottom: 0;
padding-top: 4px !important;
}
2021-02-19 08:02:12 +00:00
2023-01-27 23:11:10 +00:00
#search-org {
width: 40%;
}
2021-02-19 08:02:12 +00:00
2023-01-27 23:11:10 +00:00
#search-btn {
display: inline-block;
height: 2.3em;
margin-left: 0.5em;
}
}
</style>
2020-01-21 06:35:58 +00:00
{% endblock %}
{% block two_col_js %}
2023-01-27 23:11:10 +00:00
<script src="{{ static('libs/featherlight/featherlight.min.js') }}" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
2023-02-08 19:12:23 +00:00
var $form = $('form#filter-form');
$('input#show_orgs').click(function () {
$form.submit();
});
2023-01-27 23:11:10 +00:00
$('.time-remaining').each(function () {
count_down($(this));
});
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
$('.contest-tag').find('a[data-featherlight]').featherlight();
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
$('.join-warning').click(function () {
return confirm('{{ _('Are you sure you want to join?') }}\n' +
'{{ _('Joining a contest for the first time starts your timer, after which it becomes unstoppable.') }}');
});
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
$('#search-org').select2({multiple: 1, placeholder: '{{ _('Groups') }}...'})
.css({'visibility': 'visible'});
2021-02-19 08:02:12 +00:00
2023-01-27 23:11:10 +00:00
// var tooltip_classes = 'tooltipped tooltipped-e';
//
// $('.contest-tag').each(function () {
// var link = $(this);//
// link.mouseenter(function (e) {
// link.addClass(tooltip_classes).attr('aria-label', link.attr('data-description'));
// }).mouseleave(function (e) {
// link.removeClass(tooltip_classes).removeAttr('aria-label');
// });
// });
});
</script>
2020-01-21 06:35:58 +00:00
{% endblock %}
2022-05-28 04:28:22 +00:00
{% block left_sidebar %}
2023-01-27 23:11:10 +00:00
{% include "contest/contest-list-tabs.html" %}
2020-01-21 06:35:58 +00:00
{% endblock %}
{% macro contest_head(contest) %}
2023-10-05 06:09:09 +00:00
<a href="{{ url('contest_view', contest.key) }}" class="contest-list-title" style="margin-right: 5px;">
{{contest.name}}
</a>
<br>
<div class="contest-tags" style="margin-top: 5px;">
{% if not contest.is_visible %}
<span class="contest-tag contest-tag-hidden">
<i class="fa fa-eye-slash"></i> {{ _('hidden') }}
</span>
{% endif %}
{% if contest.is_editable %}
<span class="contest-tag contest-tag-edit">
<a href="{{ url('organization_contest_edit', organization.id, organization.slug, contest.key) }}" class="white">
<i class="fa fa-edit"></i> {{ _('Edit') }}
</a>
</span>
{% endif %}
{% if contest.is_private %}
<span class="contest-tag contest-tag-private">
<i class="fa fa-lock"></i> {{ _('private') }}
</span>
{% endif %}
{% if not hide_contest_orgs %}
{% if contest.is_organization_private %}
{% for org in contest.organizations.all() %}
<span class="contest-tag contest-tag-org">
<a href="{{ org.get_absolute_url() }}">
<i class="fa fa-lock"></i> {{ org.name }}
</a>
</span>
{% endfor %}
2023-01-27 23:11:10 +00:00
{% endif %}
2023-10-05 06:09:09 +00:00
{% endif %}
{% if contest.is_rated %}
<span class="contest-tag contest-tag-rated">
<i class="fa fa-bar-chart"></i> {{ _('rated') }}
</span>
{% endif %}
{% for tag in contest.tags.all() %}
<span style="background-color: {{ tag.color }}" class="contest-tag">
<a href="{{ url('contest_tag', tag.name) }}"
style="color: {{ tag.text_color }}"
data-featherlight="{{ url('contest_tag_ajax', tag.name) }}">
{{- tag.name -}}
</a>
</span>
{% endfor %}
</div>
2020-01-21 06:35:58 +00:00
{% endmacro %}
2023-09-08 16:22:57 +00:00
{% macro time_left(contest, padding_top = true) %}
<div class="time time-left {{ 'non-padding-top' if padding_top == false }}">
2023-01-27 23:11:10 +00:00
{% if contest.time_limit %}
{{ contest.start_time|date(_("M j, Y, G:i")) }} -
{{ contest.end_time|date(_("M j, Y, G:i")) }}
{% else %}
{{ contest.start_time|date(_("M j, Y, G:i")) }}
{% endif %}
<br>
{% if contest.time_limit %}
{% trans time_limit=contest.time_limit|timedelta('localized-no-seconds') %}{{ time_limit }} window{% endtrans %}
{% else %}
{% trans duration=contest.contest_window_length|timedelta('localized-no-seconds') %}{{ duration }} long{% endtrans %}
{% endif %}
</div>
2020-01-21 06:35:58 +00:00
{% endmacro %}
{% macro user_count(contest, user) %}
2023-01-27 23:11:10 +00:00
{% if contest.can_see_own_scoreboard(user) %}
<a href="{{ url('contest_ranking', contest.key) }}">{{ contest.user_count }}</a>
{% else %}
{{ contest.user_count }}
{% endif %}
2020-01-21 06:35:58 +00:00
{% endmacro %}
{% macro contest_join(contest, request) %}
2023-01-27 23:11:10 +00:00
{% if not request.in_contest %}
2023-09-08 16:22:57 +00:00
{% if request.profile in contest.authors.all() or request.profile in contest.curators.all() or request.profile in contest.testers.all() %}
<form action="{{ url('contest_join', contest.key) }}" method="post">
{% csrf_token %}
<input type="submit" class="unselectable button full small"
value="{{ _('Spectate') }}">
</form>
{% else %}
<form action="{{ url('contest_join', contest.key) }}" method="post">
{% csrf_token %}
<input type="submit" class="unselectable button full small join-warning"
value="{{ _('Join') }}">
</form>
{% endif %}
2023-01-27 23:11:10 +00:00
{% endif %}
2020-01-21 06:35:58 +00:00
{% endmacro %}
2022-05-28 04:28:22 +00:00
{% block middle_content %}
2023-01-27 23:11:10 +00:00
<div class="content-description">
<form id="filter-form">
<input id="search-contest" type="text" name="contest" value="{{ contest_query or '' }}"
placeholder="{{ _('Search contests...') }}">
{% if organizations %}
<select id="search-org" name="orgs" multiple>
{% for org in organizations %}
<option value="{{ org.id }}"{% if org.id in org_query %} selected{% endif %}>
{{ org.name }}
</option>
{% endfor %}
</select>
{% endif %}
<button id="search-btn" class="btn-green small"> {{ _('Search')}} </button>
2023-02-08 19:12:23 +00:00
{% if organizations %}
2023-02-09 04:00:25 +00:00
<div>
<input id="show_orgs" type="checkbox" name="show_orgs" value="1" {% if show_orgs %}checked{% endif %}>
<label for="show_orgs">{{ _('Hide organization contests') }}</label>
</div>
2023-02-08 19:12:23 +00:00
{% endif %}
2023-01-27 23:11:10 +00:00
{% if create_url %}
<a href="{{create_url}}" class="button small" style="float: right"><i class="fa fa-plus"></i> {{ _('Create')}}</a>
{% endif %}
</form>
{% if active_participations %}
<h3 class="toggle open contest-group-header">
<i class="fa fa-chevron-right fa-fw"></i>
{{ _('Active Contests') }}
</h3>
<div class="toggled">
2023-09-08 16:22:57 +00:00
{% for participation in active_participations %}
{% with contest=participation.contest %}
<div class="list-contest">
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Contests') }} </div>
{{ contest_head(contest) }}
</div>
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Time') }} </div>
<div class="contest-block">
{% if contest.start_time %}
{% if contest.time_limit %}
<span class="time">
{% trans countdown=participation.end_time|as_countdown %}Window ends in {{countdown}}{% endtrans %}
</span>
{% elif contest.time_before_end %}
<span class="time">{% trans countdown=contest.end_time|as_countdown %}Ends in {{countdown}}{% endtrans %}</span>
{% endif %}
{{ time_left(contest) }}
{% endif %}
</div>
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Format') }} </div>
{{ contest.format.name }}
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Users') }} </div>
{{ user_count(contest, request.user) }}
</div>
<div class="participate-button">
{{ contest_join(contest, request) }}
</div>
</div>
{% endwith %}
{% endfor %}
2023-01-27 23:11:10 +00:00
</div>
<br>
{% endif %}
2020-01-21 06:35:58 +00:00
<h3 class="toggle open contest-group-header">
<i class="fa fa-chevron-right fa-fw"></i>
{{ _('Ongoing Contests') }}
</h3>
2023-01-27 23:11:10 +00:00
{% if current_contests %}
<div id="ongoing-table" class="toggled">
2023-09-08 16:22:57 +00:00
{% for contest in current_contests %}
<div class="list-contest">
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Contests') }} </div>
{{ contest_head(contest) }}
</div>
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Time') }} </div>
<div class="contest-block">
{% if contest.start_time %}
{% if contest.time_before_end %}
<span class="time">{% trans countdown=contest.end_time|as_countdown %}Ends in {{countdown}}{% endtrans %}</span>
{% endif %}
{{ time_left(contest) }}
{% endif %}
</div>
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Format') }} </div>
{{ contest.format.name }}
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Users') }} </div>
{{ user_count(contest, request.user) }}
</div>
<div class="participate-button">
{{ contest_join(contest, request) }}
</div>
</div>
{% endfor %}
2020-01-21 06:35:58 +00:00
<br>
2023-01-27 23:11:10 +00:00
</div>
{% else %}
<div class="toggled">
<i> {{ _('There is no ongoing contest at this time.') }} </i>
<br>
</div>
2023-01-27 23:11:10 +00:00
{% endif %}
2020-01-21 06:35:58 +00:00
2023-01-27 23:11:10 +00:00
<h3 class="toggle open contest-group-header">
<i class="fa fa-chevron-right fa-fw"></i>
{{ _('Upcoming Contests') }}
</h3>
{% if future_contests %}
<div class="toggled">
2023-09-08 16:22:57 +00:00
{% for contest in future_contests %}
<div class="list-contest">
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Contests') }} </div>
{{ contest_head(contest) }}
</div>
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Time') }} </div>
<div class="contest-block">
{% if contest.start_time %}
{% if contest.time_before_start %}
<span class="time">{{ _('Starting in %(countdown)s.', countdown=contest.start_time|as_countdown) }}</span>
{% endif %}
{{ time_left(contest) }}
{% endif %}
</div>
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Format') }} </div>
{{ contest.format.name }}
</div>
</div>
{% endfor %}
2023-01-27 23:11:10 +00:00
</div>
{% else %}
<div class="toggled">
<i>{{ _('There is no scheduled contest at this time.') }}</i>
<br>
</div>
2023-01-27 23:11:10 +00:00
{% endif %}
<br>
<h3 class="toggle open contest-group-header">
{{ _('Past Contests') }}
</h3>
2023-01-27 23:11:10 +00:00
{% if past_contests %}
{% if page_obj and page_obj.num_pages > 1 %}
2023-09-08 16:22:57 +00:00
<div style="margin-bottom: 10px;">
2023-01-27 23:11:10 +00:00
{% include "list-pages.html" %}
</div>
{% endif %}
2023-09-08 16:22:57 +00:00
{% for contest in past_contests %}
<div class="list-contest">
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Contests') }} </div>
{{ contest_head(contest) }}
</div>
<div class="info-contest" style="flex: 1.5">
<div class="contest-title"> {{ _('Time') }} </div>
<div class="contest-block">
{{ time_left(contest, false) }}
</div>
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Format') }} </div>
{{ contest.format.name }}
</div>
<div class="info-contest">
<div class="contest-title"> {{ _('Users') }} </div>
{{ user_count(contest, request.user) }}
</div>
{% if not request.in_contest %}
<div class="participate-button">
<form action="{{ url('contest_join', contest.key) }}" method="post">
{% csrf_token %}
<input type="submit" class="unselectable button full small"
value="{{ _('Virtual join') }}">
</form>
</div>
{% endif %}
</div>
{% endfor %}
2023-01-27 23:11:10 +00:00
{% if page_obj and page_obj.num_pages > 1 %}
<div style="margin-top: 10px;">
{% include "list-pages.html" %}
</div>
{% endif %}
{% else %}
<div class="toggled">
<i> {{ _('There is no past contest.') }} </i>
<br>
</div>
2023-01-27 23:11:10 +00:00
{% endif %}
</div>
2020-01-21 06:35:58 +00:00
{% endblock %}