{% extends "base.html" %} {% block content %} {% if items %}
{% for item in items %}
{% with reorder_url="/notes/reorder", item_id=item.id %} {% include 'partials/reorder_arrows.html' %} {% endwith %} {% if item.domain_color %}{{ item.domain_name }}{% endif %} {{ item.title }} {% if item.project_name %}{{ item.project_name }}{% endif %} {{ item.updated_at.strftime('%Y-%m-%d') if item.updated_at else '' }}
Edit
{% endfor %}
{% else %}
📄
No notes yet
Create Note
{% endif %} {% endblock %}