Modify problem submit button
This commit is contained in:
parent
5d54b6b3c4
commit
f970d11d67
1 changed files with 16 additions and 17 deletions
|
@ -52,11 +52,6 @@
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block content_js_media %}
|
{% block content_js_media %}
|
||||||
<script>
|
|
||||||
function redirectTo(url) {
|
|
||||||
window.location.href = url;
|
|
||||||
}
|
|
||||||
</script>
|
|
||||||
{% include "comments/media-js.html" %}
|
{% include "comments/media-js.html" %}
|
||||||
{% include "actionbar/media-js.html" %}
|
{% include "actionbar/media-js.html" %}
|
||||||
{% if request.in_contest_mode %}
|
{% if request.in_contest_mode %}
|
||||||
|
@ -146,12 +141,14 @@
|
||||||
{% block info_float %}
|
{% block info_float %}
|
||||||
{% if request.user.is_authenticated and request.in_contest_mode and submission_limit %}
|
{% if request.user.is_authenticated and request.in_contest_mode and submission_limit %}
|
||||||
{% if submissions_left > 0 %}
|
{% if submissions_left > 0 %}
|
||||||
<button onclick="redirectTo('{{ url('problem_submit', problem.code) }}')" class="btn-green btn btn-primary btn-block btn-round">
|
<a href="{{ url('problem_submit', problem.code) }}">
|
||||||
<span>{{ _('Submit') }}</span>
|
<button class="btn-green btn btn-primary btn-block btn-round">
|
||||||
<div class="icon icon-round d-flex align-items-center justify-content-center">
|
<span>{{ _('Submit') }}</span>
|
||||||
<i class="fa fa-send"></i>
|
<div class="icon icon-round d-flex align-items-center justify-content-center">
|
||||||
</div>
|
<i class="fa fa-send"></i>
|
||||||
</button>
|
</div>
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
<div class="submissions-left">
|
<div class="submissions-left">
|
||||||
{% trans trimmed counter=submissions_left %}
|
{% trans trimmed counter=submissions_left %}
|
||||||
{{ counter }} submission left
|
{{ counter }} submission left
|
||||||
|
@ -169,12 +166,14 @@
|
||||||
<div class="no-submissions-left submissions-left">{{ _('0 submissions left') }}</div>
|
<div class="no-submissions-left submissions-left">{{ _('0 submissions left') }}</div>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% else %}
|
{% else %}
|
||||||
<button onclick="redirectTo('{{ url('problem_submit', problem.code) }}')" class="btn-green btn btn-primary btn-block btn-round">
|
<a href="{{ url('problem_submit', problem.code) }}">
|
||||||
<span>{{ _('Submit') }}</span>
|
<button class="btn-green btn btn-primary btn-block btn-round">
|
||||||
<div class="icon icon-round d-flex align-items-center justify-content-center">
|
<span>{{ _('Submit') }}</span>
|
||||||
<i class="fa fa-send"></i>
|
<div class="icon icon-round d-flex align-items-center justify-content-center">
|
||||||
</div>
|
<i class="fa fa-send"></i>
|
||||||
</button>
|
</div>
|
||||||
|
</button>
|
||||||
|
</a>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
|
|
||||||
<hr style="padding-bottom: 0.3em">
|
<hr style="padding-bottom: 0.3em">
|
||||||
|
|
Loading…
Reference in a new issue