now opening and closing of feedback quiz and registration can be done only by staff users .
import string
import random
def gen_key(no_of_chars):
allowed_chars = string.digits+string.uppercase
return ''.join([random.choice(allowed_chars) for i in range(no_of_chars)])