blob: 6f709458faa464716dbcb46063b608c978a12308 (
plain)
1
2
3
4
5
6
7
8
9
|
from django.contrib.sitemaps import Sitemap
from tbc.models import Chapters
class TbcBookSitemap(Sitemap):
changefreq = "never"
priority = 0.5
def items(self):
return Chapters.objects.all()
|