{% extends "repository/base.html" %} {% load i18n %} {% block title %}{% trans "Repository" %} :: {{ klass }} :: {% trans "New" %}{% endblock %} {% block breadcrumbs %}{% trans "Repository" %} / {{ klass }} / {% trans "New" %}{% endblock %} {% block extrahead %} {% include "autocomplete.html" %} {% endblock %} {% block content %}

{% trans "Submit new" %} {{ klass }}

{% trans "Supply only vital information under the Summary tab. You can fill in additional information under More Info or later on by editing." %}
{% if form.errors %}

{% trans "There were some errors, please see below" %}.{% endif %}

* {{ form.name.errors }}
{{ form.name }}
{% trans "Come up with good name. IT CANNOT BE CHANGED LATER ON! The name will also be used for creating the 'slug', that is, the readable id for this item." %}
{{ form.summary.errors }}
{{ form.summary }}
{% trans "One-line summary of your challenge" %}
{{ form.tags.errors }}
{{ form.tags }}
{% trans "Space separated tags for your challenge (see tag cloud on the right)." %}
* {{ form.task.errors }}
{{ form.task }}
{% trans "Specify the tasks that need to be solved in this challenge." %}
{{ form.description.errors }}
{{ form.description }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ form.urls.errors }}
{{ form.urls }}
{{ form.publications.errors }}
{{ form.publications }}
{{ form.keep_private }} {% trans "Keep private" %}
{% endblock %}