Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Hide max runtime and max memory until properly supported #124

Merged
merged 1 commit into from
Apr 10, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions src/problems/templates/problems/problem.html
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,15 @@ <h2 class="subtitle is-5 has-text-centered is-italic"><strong>You will learn abo
<td style=""><progress class="progress is-danger" value="{{ problem.timesink }}" max="15"></progress></td>
{% endif %}
</tr>
<!-- No point in showing these until the engine fully supports max runtime and max memory usage...
<tr>
<th><i class="far fa-clock fa-fw"></i>&nbsp;Max runtime</th>
<td>60 s</td>

<th><i class="fas fa-memory fa-fw"></i>&nbsp;Max memory</th>
<td>250 MiB</td>
</tr>
-->
<tr>
<th><i class="fas fa-file-code fa-fw"></i>&nbsp;Function</th>
<td colspan="3"><span style="font-family: monospace;">{% block function_signature %}{% endblock %}</span></td>
Expand Down