{% extends 'base.html' %} {% load selectable_tags %} {% load add_class %} {% block title %}{{assessment}} | Create Dose Units {% endblock title %} {% block main_content %}
{% csrf_token %}
Create new dose/exposure units

Create a new set of dose/exposure units (for example μg/g). Note that the creation of new dose/exposure-units are all assessments in HAWC, not just the assessment you're currently working on. Therefore, our staff may periodically review to ensure that the dose-units are 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 dose-units!

{% endblock main_content %} {% block extrajs %} {{ form.media }} {% endblock extrajs %}