{% extends "base.html" %} {% block title %}Saved & Notes โ€” Python 108{% endblock %} {% block content %}
{% if bookmarked %}
{% for p in bookmarked %}
#{{ p['n'] }} {{ p['mod'] }}
{{ p['title'] }}
{{ p['what'] }}
{% if notes.get(p['n']) %}
๐Ÿ“ {{ notes[p['n']][:120] }}{% if notes[p['n']]|length > 120 %}โ€ฆ{% endif %}
{% endif %}
{% endfor %}
{% else %}
๐Ÿ”–
No bookmarks yet
Click the ๐Ÿ”– Save button on any program page to save it here.
{% endif %}
{% endblock %}