{% 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." %} {% trans "Please note that the Data file cannot be changed, you would have to create a new Data item." %}
{% 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 data set" %}
{{ form.tags.errors }}
{{ form.tags }}
{% trans "Space separated tags for your data set (see tag cloud on the right)." %}
* {{ form.license.errors }}
{{ form.license }}
Choose a license for your data set. ({% trans "more info" %})
* {{ form.file.errors }}
{{ form.file }}
Data file must be smaller than {{ upload_limit }}! ({% trans "parsed formats" %})
{{ 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.source.errors }}
{{ form.source }}
{{ form.measurement_details.errors }}
{{ form.measurement_details }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ form.usage_scenario.errors }}
{{ form.usage_scenario }}
{% trans 'You may use Markdown syntax here, but raw HTML will be removed' %}.
{{ form.keep_private }} {% trans "Keep private" %}

0%
{% endblock %}