Skip to content
Snippets Groups Projects
Commit b553119a authored by Martin Mareš's avatar Martin Mareš
Browse files

Lepší upozornění na formát odevzdávaného souboru

  • Zdůrazňujeme, že to má být jeden soubor.
  • Popis formátu souboru opakujeme na stránce odevzdání úlohy.
parent 8a457b17
No related branches found
No related tags found
No related merge requests found
...@@ -62,7 +62,7 @@ ...@@ -62,7 +62,7 @@
{% endif %} {% endif %}
</p> </p>
{% if contest.ct_can_submit() %} {% if contest.ct_can_submit() %}
<p>Řešení odevzdávejte ve formátu PDF jako soubor o velikosti maximálně <p>Řešení odevzdávejte ve formátu PDF jako jeden soubor o velikosti maximálně
{{ max_submit_size // 1048576 }} MB. {{ max_submit_size // 1048576 }} MB.
Pokud si s tvorbou PDF nevíte rady, zkuste se podívat do <a href='https://docs.google.com/document/d/1XXk7Od-ZKtfmfNa-9FpFjUqmy0Ekzf2-2q3EpSWyn1w/edit?usp=sharing'>návodu</a>. Pokud si s tvorbou PDF nevíte rady, zkuste se podívat do <a href='https://docs.google.com/document/d/1XXk7Od-ZKtfmfNa-9FpFjUqmy0Ekzf2-2q3EpSWyn1w/edit?usp=sharing'>návodu</a>.
{% endif %} {% endif %}
......
...@@ -23,6 +23,8 @@ ...@@ -23,6 +23,8 @@
{% if state == RoundState.running %} {% if state == RoundState.running %}
{% if contest.ct_can_submit() %} {% if contest.ct_can_submit() %}
<h3>Odevzdat řešení</h3> <h3>Odevzdat řešení</h3>
<p>Řešení odevzdávejte ve formátu PDF jako jeden soubor o velikosti maximálně
{{ max_submit_size // 1048576 }} MB.
{% if task.type == TaskType.regular %} {% if task.type == TaskType.regular %}
{% if round.ct_submit_end and g.now > round.ct_submit_end %} {% if round.ct_submit_end and g.now > round.ct_submit_end %}
<p class="alert alert-danger">Pozor, odevzdáváte po termínu, uplynul {{ round.ct_submit_end|time_and_timedelta }}. <p class="alert alert-danger">Pozor, odevzdáváte po termínu, uplynul {{ round.ct_submit_end|time_and_timedelta }}.
......
...@@ -453,6 +453,7 @@ def user_contest_task(contest_id: int, task_id: int): ...@@ -453,6 +453,7 @@ def user_contest_task(contest_id: int, task_id: int):
form=form, form=form,
cms_params=cms_params, cms_params=cms_params,
messages=messages, messages=messages,
max_submit_size=config.MAX_CONTENT_LENGTH,
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment