ubookmark/ubookmark/views.py

9 lines
155 B
Python

from django.views.generic.list import ListView
from ubookmark.models import *
class IndexView(ListView):
model = BookmarkModel
paginate_by = 50