{% extends "base_2col.html" %} {% block extrahead %} {% endblock %} {% block sectionid %}submit{% endblock %} {% block title %}Submit a software project{% endblock %} {% block billboard %}Submit a software project{% endblock %} {% block content-related %}
Submitting/Updating software project as user {{ user.username }}.

Hint

For the fields Authors, Tags, Programming Languages, Operating System, Open Source License, select items from the drop down list or manually add new items. Make sure all items are separated by a comma.
{% endblock %} {% block content %} {% if form.errors %}

Please correct the errors below:

{% endif %} {% if form.is_multipart %}
{% else %} {% endif %}
{{ form.title.label }}

{{ form.title.help_text }} {% if form.title.errors %}

{{ form.title.errors|join:", " }} {% endif %}
{{ form.title|safe }}
{{ form.version.label }}

{{ form.version.help_text }} {% if form.version.errors %}

{{ form.version.errors|join:", " }} {% endif %}
{{ form.version|safe }}
{{ form.authors.label }}

{{ form.authors.help_text }} {% if form.authors.errors %}

{{ form.authors.errors|join:", " }} {% endif %}
{{ form.authors_choice|safe }}{{ form.authors|safe }}
{{ form.contact.label }}

{{ form.contact.help_text }} {% if form.contact.errors %}

{{ form.contact.errors|join:", " }} {% endif %}
{{ form.contact|safe }}
{{ form.tags.label }}

{{ form.tags.help_text }} {% if form.tags.errors %}

{{ form.tags.errors|join:", " }} {% endif %}
{{ form.tags_choice|safe }}{{ form.tags|safe }}
{{ form.language.label }}

{{ form.language.help_text }} {% if form.language.errors %}

{{ form.language.errors|join:", " }} {% endif %}
{{ form.language_choice|safe }}{{ form.language|safe }}
{{ form.operating_systems.label }}

{{ form.operating_systems.help_text }} {% if form.operating_systems.errors %}

{{ form.operating_systems.errors|join:", " }} {% endif %}
{{ form.operating_systems_choice|safe }}{{ form.operating_systems|safe }}
{{ form.os_license.label }}

{{ form.os_license.help_text }} {% if form.os_license.errors %}

{{ form.os_license.errors|join:", " }} {% endif %}
{{ form.os_license_choice|safe }}{{ form.os_license|safe }}
{{ form.dataformats.label }}

{{ form.dataformats.help_text }} {% if form.dataformats.errors %}

{{ form.dataformats.errors|join:", " }} {% endif %}
{{ form.dataformats_choice|safe }}{{ form.dataformats|safe }}
{{ form.project_url.label }}

{{ form.project_url.help_text }} {% if form.project_url.errors %}

{{ form.project_url.errors|join:", " }} {% endif %}
{{ form.project_url|safe }}
{{ form.thumbnail.label }}

{{ form.thumbnail.help_text }} {% if form.thumbnail.errors %}

{{ form.thumbnail.errors|join:", " }} {% endif %}
{{ form.thumbnail|safe }} {{ form.thumbnail_file|safe }}
{{ form.screenshot.label }}

{{ form.screenshot.help_text }} {% if form.screenshot.errors %}

{{ form.screenshot.errors|join:", " }} {% endif %}
{{ form.screenshot|safe }} {{ form.screenshot_file|safe }}
{{ form.tarball.label }}

{{ form.tarball.help_text }} {% if form.tarball.errors %}

{{ form.tarball.errors|join:", " }} {% endif %}
{{ form.tarball|safe }} {{ form.tarball_file|safe }}
{{ form.download_url.label }}

{{ form.download_url.help_text }} {% if form.download_url.errors %}

{{ form.download_url.errors|join:", " }} {% endif %}
{{ form.download_url|safe }}
{{ form.paper_bib.label }}

{{ form.paper_bib.help_text }} {% if form.paper_bib.errors %}

{{ form.paper_bib.errors|join:", " }} {% endif %}
{{ form.paper_bib|safe }}
{{ form.short_description.label }}

{{ form.short_description.help_text }} {% if form.short_description.errors %}

{{ form.short_description.errors|join:", " }} {% endif %}
{{ form.short_description|safe }}
{{ form.description.label }}

{{ form.description.help_text }} {% if form.description.errors %}

{{ form.description.errors|join:", " }} {% endif %}
{{ form.description|safe }}
{{ form.changes.label }}

{{ form.changes.help_text }} {% if form.changes.errors %}

{{ form.changes.errors|join:", " }} {% endif %}
{{ form.changes|safe }}
{% endblock %}