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)
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
2 matches
Mail list logo