{% extends "lims/base.html" %} {% load static %} {% load crispy_forms_tags %} {% block extra_css %} {% if not request.user.username %} {% endif %} {% endblock %} {% block body_class %}survey{% endblock %} {% block page_title %}{{ form.body.title }}{% endblock %} {% block page_heading %}

{{ form.body.title }}

{% endblock %} {% block full %}
{% if form.errors %}
It looks like there's a problem! Please correct the errors below.
{{ form.errors }}
{% endif %} {% crispy form form.body %}
{% crispy form form.footer %}
{% endblock %}