{% extends 'base.html' %} {% block title %}Bookmarks — WildWatch{% endblock %} {% block content %}

🔖 Saved Posts

{{ posts|length }} bookmarked post{{ posts|length|pluralize }}

{% if posts %}
{% for post in posts %}
{{ post.caption|truncatechars:60 }}

{{ post.caption }}

{% endfor %}
{% else %}
🔖

No bookmarks yet

Save posts to view them later by clicking the bookmark button.

Browse Feed
{% endif %}
{% endblock %}