Existem 16 posts na categoria Django

Change object after saving all inlines in Django Admin

12 Fev 2011

Admin is an awesome Django builtin app to create nice CRUDs for your models, and offers a lot of customizations hooks. You can personalize the templates, perform custom filters, modify newly created objects and if that's not enough, you can always create your own view to do something it doesn't by default.

Continue lendo

Extending the User model in Django

11 Dez 2010

Django brings a built-in user authentication system, it includes an User model which has the most common attributes. But in most applications you may need to store additional attributes to users. Django has a way to do this too.

Continue lendo

Slides: Desenvolvimento web com Python e Django

08 Nov 2010

Segue os slides da minha palestra Desenvolvimento web com Python e Django.

Continue lendo

Campos numéricos localizados no Django

25 Set 2010

A criação de campos numéricos ficou muito mais fácil no Django na versão 1.2.

Continue lendo

Customize settings.py locally in Django

12 Set 2010

The django configuration file is pure python code, this gives us a lot of flexibility to setup settings when the application starts.

Continue lendo

Replacing render_to_response with direct_to_template in Django

11 Set 2010

You certainly have already used render_to_response to render your templates, it's a very convenient shortcut. At least until you need to use context processors...

Continue lendo