Implement basic bookmark page

This commit is contained in:
Sascha Ißbrücker
2019-06-27 08:09:51 +02:00
commit fc2794aa61
25 changed files with 567 additions and 0 deletions

6
bookmarks/admin.py Normal file
View File

@@ -0,0 +1,6 @@
from django.contrib import admin
# Register your models here.
from .models import Bookmark
admin.site.register(Bookmark)