More helpful Blacklist form, allows for users to set the level of blacklist.

This commit is contained in:
2011-07-09 11:45:28 +01:00
parent 80139eeedb
commit 6b9f70d923
3 changed files with 10 additions and 4 deletions

View File

@@ -310,8 +310,11 @@ def blacklist_user(request, userid):
else:
expiry = form.cleaned_data['expiry_date']
level = form.cleaned_data.get('level', 0)
print level
def blacklist_item(type, value):
o = Blacklist(type=type, value=value, source=source, expiry_date=expiry, created_by=request.user, reason=form.cleaned_data['reason'])
o = Blacklist(type=type, value=value, level=level, source=source, expiry_date=expiry, created_by=request.user, reason=form.cleaned_data['reason'])
o.save()
for ea in u.eveaccount_set.all():