1

私はこのパーマリンク定義を持っています:

@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})

URLは次のようになります。

/ news / 2012 / oct / 20 / slug-title

octは英語であり、私の現地で指定された言語ではありません。「oct」の代わりに「okt」を取得するにはどうすればよいですか?

これが私の設定です:

LANGUAGE_CODE = 'nb'
USE_I18N = True
USE_L10N = True
4

0 に答える 0