{% 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 the description of your method under the Summary tab. You can upload your outputs later on by editing. Additional information can be entered 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 method" %}
{{ form.tags.errors }}
{{ form.tags }}
{% trans "Space separated tags for your method (see tag cloud on the right)." %}
{{ form.feature_processing.errors }}
{{ form.feature_processing }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ form.parameters.errors }}
{{ form.parameters }}
{{ form.os.errors }}
{{ form.os }}
{{ form.code.errors }}
{{ form.code }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ form.software_packages.errors }}
{{ form.software_packages }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ 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 %}