{% extends "base.html" %} {% block title %}Notatki{% endblock %} {% block extrahead %} {% endblock %} {% block content %}
{% if notes or private_notes %}
{% if notes %}

Notatki:

{% for note in notes %} {% if note.new %} {% else %} {% endif %} {% endfor %}
Data dodania: Hasło: Słownik: Temat wiadomości: Nadawca: Nowa:
{{note.time}} {{note.lemma.entry}} {{note.lemma.vocabulary.name}} {{note.topic}} {{note.sender.username}}TAK
{% endif %}
{% if private_notes %}

Prywatne notatki:

{% for note in private_notes %} {% endfor %}
Data dodania: Hasło: Słownik: Temat wiadomości: Nadawca:
{{note.time}} {{note.lemma.entry}} {{note.lemma.vocabulary.name}} {{note.topic}} {{note.sender.username}}
{% endif %}
{% endif %}
{% endblock %}