read only datatime field with a custom admin

2012-08-15 Thread brian downing
How do I create a read only datatime field with a custom admin? Here is the psudo code from what I've done: - class myAdminForm(forms.ModelForm): def __init__(self, *args, **kwargs): super(myAdminForm, self).__init__(*args, **kwargs)

brute force protection

2012-08-30 Thread brian downing
I want a brute force protector for logins that will: 1. block based on username(eventually add ip) 2. store info about failed login to db(username, pwd, user-agent, etc) 3. When locked will tell user that they are locked out I looked at the following apps: 1. http://code.googl