2013-07-09 15:58:52 +00:00
|
|
|
from django.views.generic import ListView, DetailView
|
|
|
|
|
|
|
|
|
|
from .models import Post
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BlogListView(ListView):
|
|
|
|
|
model = Post
|
|
|
|
|
template_name = 'blog_list.html'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class BlogDetailView(DetailView):
|
|
|
|
|
model = Post
|
|
|
|
|
template_name = 'blog_detail.html'
|