{% extends 'base.html' %} {% block extrastyles %} {% endblock %} {% block content %}
{% include "notes/partials/list_header.html" with notebook_list=notebook_list tag_list=tag_list %}
{% if object.name != 'Trash'%}
{% csrf_token %} {{ form.non_field_errors }}
{% for field in form %}{% if field.name == 'color_rgb' %}
{% if field.errors %}{{field.errors}}{% endif %}
{% else %}
{{field.label_tag}} {{field}} {% if field.errors %}{{field.errors}}{% endif %}
{% endif %} {% endfor %}

{{object.name}}

{%else%}

{{object.name}}

{%endif%}
{%comment%}
{%endcomment%}
{% endblock %} {% block jsdomready %} window.url = "{% url 'notebook-api-detail' object.pk %}"; {%endblock%}