DT
Size: a a a
DT
T
T
class StaticPagesMap(Sitemap):
protocol = 'https'
changfreq = 'always'
def items(self):
list1 = ['faq_index', 'news_index', 'tv-page']
list2 = ['/hello/']
ret_mass = list1+list2
return ret_mass
# return ['contest_index', 'votings_index', 'faq_index', 'news_index', 'tv-page']
def location(self, item):
return reverse(item)
DT
T
T
NK
T
R
R
T
BB
BB
class BalanceOperation(AbstractOperation, models.Model):
operation_type = models.CharField(max_length=20,
choices=BALANCE_OPERATION_TYPES,
db_index=True)
BB
BB
DT
T
DT
BB
🔐