I've been playing around with my settings file and have included a
DATE_FORMAT and a DATETIME_FORMAT setting.

DATETIME_FORMAT = 'j F Y H:i'

DATE_FORMAT = 'j F Y'

When using the date template filter on a date or datetime variable, I
get my dates formatted in the format set in DATE_FORMAT.

{{ myvariable|date }}

This outputs to something like '24 december 2008' independently if
this is a date or datetime variable.

Shouldn't this filter use the DATETIME_FORMAT if the provided variable
is a datetime one?

Is this the correct way to handle localized date and datetime formats
in django?

Regards, Stefan



On Jan 7, 3:52 pm, Stefan Tunsch <stun...@gmail.com> wrote:
> Hi!
>
> I'm trying to display a list of possible months in a queryset. I do so
> like this:
>
> premonths = MyModel.objects.dates('date_published', 'month')
> months = [m.strftime('%B') for m in premonths]
>
> The problem is that months get displayed in english instead of spanish,
> which is what I want.
>
> I have the following setting in my settings file, but it does not seem
> to do what I want:
>
> LANGUAGE_CODE = 'es-ES'
>
> I can indeed work out a solution doing something like this:
>
> premonths = MyModel.objects.dates('date_published', 'month')
> import locale
> locale.setlocale(locale.LC_TIME, "sp")
> months = [m.strftime('%B') for m in premonths]
>
> But I guess I'm missing something here...
>
> BTW, the problem of the wrong locale of dates is everywhere I use dates
> on my site, not only in this snippet.
>
> Regards, Stefan
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to