{% extends 'base.html' %} {% block extrastyles %} {% endblock %} {% block content %}

Create a new note

{% csrf_token %} {{ form.non_field_errors }} {% for field in form %}
{{field.label_tag}} {{field}} {% if field.errors %}{{field.errors}}{% endif %}
{% if field.name == 'body_qjson' %}
{% endif %} {% endfor %}

{% include 'notes/partials/notebook_form.html' with form=notebook_form %}
{% endblock %} {% block jsinclude %} {% endblock %}