{% extends 'base.html' %} {% load static %} {% block css %} {% endblock %} {% block content %} {% include 'navbar.html' %}

{{id}}

Dostępne notatki

    {% for note in notes %} {% if user.id != note.user.user.id %} {{ note.name }} {% endif %} {% endfor %}

Twoje notatki

    {% for note in notes %} {% if user.id == note.user.user.id %} {{ note.name }} {% endif %} {% endfor %}
{% endblock %}