{% extends 'base.html' %} {% load add_class %} {% block title %}{{assessment}} | Create Strain {% endblock title %} {% block main_content %}
{% csrf_token %}
Create new strain Create a new strain. Note that the creation of a new strain 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 strain 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 strain!

{% endblock main_content %}