{% extends "base.html" %} {% load i18n static %} {% block title %}{% if object %}{% trans "Edit Note" %}{% else %}{% trans "New Note" %}{% endif %} - {{ block.super }}{% endblock %} {% block content %}

{% if object %}{% trans "Edit Note" %}{% else %}{% trans "New Note" %}{% endif %}

{% trans "Back to List" %}
{% csrf_token %} {% for field in form %} {% include "includes/form_field.html" %} {% endfor %}
{% trans "Cancel" %}
{% endblock %}