{% extends 'base.html' %} {% block content %} Notes {% if tags|length >= 1%}Tagged with: {% for tag in tags%}{{tag.name}}{%endfor%}{%endif%} Notebooks {% for object in notebook_list %} {{object.name}} - {{object.note_count}} {%endfor%} Tags {% for object in tag_list %} {{object.name}} - {{object.note_count}} {%endfor%} {%comment%} Default This is a placeholder {% for object in notebook_list %} {{object.name}} {% endfor %} {%endcomment%} {% for object in object_list %} {% include "notes/partials/note_list.html" with object=object %} {% endfor %} {% if tags|length >= 1%} {%comment%}{%endcomment%} {%else%} {%endif%} {% endblock %}