{% extends "base.html" %} {% load display_license_form %} {% load google_maps %} {% block head %} {{ block.super }} {% endblock head %} {% block title %}{{ block.super }}Describe - describe individual sounds{% endblock %} {% block content %}

Describe

Describe individual sounds ({{request.session.describe_sounds_number}} left)

This is the last step in the describe process. If you've selected more than {{ sounds_per_round }} you will be asked to describe groups of {{ sounds_per_round }} sounds until all are done. In the list below you'll have to at least specify tags and a description for each of the uploaded sounds. Click on the sound filenames to display the form for describing each sound.

The license and the pack you've chosen in the previous steps will be applied to each of the files here. You can however change these settings for each individual file.

You are not required to specify a geolocation for each sound, but if the sound is a field-recording it's probably a good idea to specify the location.

{% csrf_token %}
{% for form in forms %}
{{ form.sound.name }}

Tags and Description

{{form.description.name.errors}}

Name:
{{form.description.name}}

{{form.description.tags.errors}}

Tags: {{form.description.tags.help_text|safe}}
{{form.description.tags}}

{{form.description.description.errors }}

Description:
{{form.description.description }}

Explicit content: {{form.description.is_explicit }}

Geotag

Add geotag

Drag this map to set a geotag:

{{ form.geotag.as_p }}

Pack

{{ form.pack.as_p }}

License

{{ form.license.as_p }}
{% endfor %}
{% endblock %}