{% extends 'base.html' %} {% load add_class %} {% block title %}{{assessment}} | Create Species {% endblock title %} {% block main_content %}
{% csrf_token %}
Create new species Create a new species. Note that the creation of a new species is applied as an option for all assessments in HAWC, not just the assessment you're currently working on. Therefore, our staff may periodically review to ensure that the species is indeed new and not pre-existing.
{{ form.non_field_errors|add_class:"alert alert-error" }} {% for field in form %}
{{field.label_tag|add_class:"control-label"}}
{{field}} {{field.help_text}}
{{field.errors|add_class:"alert alert-error"}}
{% endfor %}

Note: If coming from an input-form, you may need to refresh the page to view your newly added species!

{% endblock main_content %}