Add list view and admin for bookmarks

This commit is contained in:
2021-03-10 08:58:23 -06:00
parent 80a1048533
commit c9d0d81972
6 changed files with 36 additions and 5 deletions

View File

@@ -0,0 +1,8 @@
<h1>Bookmarks</h1>
<ul>
{% for bookmark in object_list %}
<li>{{ bookmark.title }} - {{ bookmark.url }}</li>
{% empty %}
<li>No bookmarks yet.</li>
{% endfor %}
</ul>