{% extends "base.html" %} {% block content %}

Add Note

{% if notes %} {% for note in notes %}
{% if note.tags %}
{% for tag in note.tags.split(',') %}{% if tag.strip() %} {{ tag.strip() }} {% endif %}{% endfor %}
{% endif %}
{{ note.content }}
{{ note.source }} · {{ note.created_at[:19] }}
{% endfor %} {% else %}

No notes yet. Add your first tech lead note above.

{% endif %}
{% endblock %}