11 lines
258 B
Python
11 lines
258 B
Python
# in sitemaps.py
|
|
|
|
from django.contrib.sitemaps import Sitemap
|
|
# from .models import #modely
|
|
|
|
'''class HomeSitemap(Sitemap):
|
|
def items(self):
|
|
return UserProfile.objects.all()
|
|
|
|
def location(self, item):
|
|
return item.get_absolute_url()''' |