我有这个永久链接def:
@models.permalink
def get_absolute_url(self):
creation_date = timezone.localtime(self.start_publication)
return ('entry_detail', (), {
'year': creation_date.strftime('%Y'),
'month': creation_date.strftime('%b').lower(),
'day': creation_date.strftime('%d'),
'slug': self.slug})
网址如下:
/消息/ 2012 /辛/ 20 /嵌块式标题
oct是英文,而不是我当地指定的语言。我怎样才能得到“okt”而不是“oct”?
以下是我的设置:
LANGUAGE_CODE = 'nb'
USE_I18N = True
USE_L10N = True