{% extends 'main.html' %} {% load static %} {% block content %}

Species Feedback:  {{species.name}}

{% if messages %} {% for message in messages %} {% endfor %} {% endif %}

Use this form to submit feedback, corrections, or additional information about {{species.name}}.

** All feedback is private and visible only to staff administrators. It will never be displayed publicly. **

{% csrf_token %} {% if not request.user.is_authenticated %}
{{ form.email }} {% if form.email.errors %}
{{ form.email.errors }}
{% endif %}
Required so we can follow up if needed.
{% else %} {{ form.email }} {% endif %}
{{ form.comment }} {% if form.comment.errors %}
{{ form.comment.errors }}
{% endif %}

Note: If you would like to submit a photo for consideration as the species profile photo, you can upload it here. Please state this in your comment so we understand this is your intent.

{{ form.species_image }} {% if form.species_image.errors %}
{{ form.species_image.errors }}
{% endif %}

** Be sure any photos uploaded are yours or you have permission to use them. All species photos require Photo Credit **

{{ form.species_photo_credit }} {% if form.species_photo_credit.errors %}
{{ form.species_photo_credit.errors }}
{% endif %}

 

{% endblock content %}