Guest User

Untitled

a guest
Jul 20th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. # sitemaps.py
  2. from django.contrib.sitemaps import Sitemap
  3. from .models import Post
  4. class PostSitemap(Sitemap):
  5. def items(self):
  6. return Post.objects.all()
Add Comment
Please, Sign In to add comment