Archive for the 'Django' Category

Evaluation of Javascript Libraries

# for django integration.

Useful form tricks in Django

# for changing the default model form setting.

Django newforms: How to create dynamic forms

http://eggdrop.ch/blog/2007/02/15/django-dynamicforms/

http://jquery.bassistance.de/validate/demo/dynamic-totals.html

datepicker without admin

#

“”"I use something like this (after adding in the JS) to create a form with a date field that works like the admin:

from django import forms
from django.contrib.admin import widgets
class FooForm(forms.Form):
bar = forms.DateField(widget=widgets.AdminDateWidget)

“”"

DjangoCon 2008 Sessions in YouTube

Persistent Django on Amazon EC2 and EBS - The easy way

#

The Python Property Builtin

# and it’s application to Django’s model-based URL generation.

Adrian Holovaty, “EveryBlock: A News Feed for Your Block”

#

Interviews with creators of Django

Adrian Holovaty and Jacob Kaplan-Moss

“Default” templates in Django

# “…When used wisely, it can allow for a situation in which you can literally design an entire site by creating only one HTML file.”

Next Page »