Emil
Emil

Reputation: 29

Django Event Calendar

Hi I am using an Event Calendar wirtten in Django http://www.3captus.com/download/django_calendar and it is working great expect the time format is showing up wrong. Instead of showing "12:00:00" it is showing "noon" instead, can someone figure out what is wrong.

Upvotes: 0

Views: 547

Answers (1)

arie
arie

Reputation: 18972

If you are talking about the formatting of a date in your templates then you can adjust the format easily with the builtin date filter.

Make sure to also check your TIME_FORMAT setting.

Upvotes: 1

Related Questions