The student proposal public page can now be used to place a public comment.
Developers, Hosts, and the student/org_admin/mentor that this proposal is from/directed to can leave a comment.
All the comments placed will show up on the review page aswell, and vica versa.
Patch by: Lennard de Rijk
Reviewed by: to-be-reviewed
#!/usr/bin/env python
if __name__ == "__main__":
import sys
name = sys.argv[0]
args = ' '.join(sys.argv[1:])
print >> sys.stderr, "%s has been moved into django-admin.py" % name
print >> sys.stderr, 'Please run "django-admin.py makemessages %s" instead.'% args
print >> sys.stderr
sys.exit(1)