Is it possible to localize the admin site?

2010-07-06 Thread AllenDang
I want to create a localized admin site, for example, I created models like below shows: class Inventory(models.Model): price = models.PositiveIntegerField() quantity = models.PositiveIntegerField() Then in my admin.py, I created a admin model for it like below: class InventoryAdmin(admi

Re: Should I start to use Mako from beginning?

2010-06-30 Thread AllenDang
Thanks for your helpful feedback, both Bill and Euan. You just make up my mind. I'll start building my site with entire original django now. -- You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-us...@google

Should I start to use Mako from beginning?

2010-06-30 Thread AllenDang
I'm new to django, it's amazing! But after I did some research from google, I found out that some people say that the default template engine of django is not that good to use, they recommend Mako as a replacement. So I'm wondering if I should start learning and using Mako from beginning? Frankly