1👍
You can remove the label like this.
class CacheCheck(forms.Form):
def __init__(self, *args, **kwargs):
forms.Form.__init__(self, *args, **kwargs)
self.fields['type'].label=''
I know that this does not solve everything in your question, but it should help you get you started.
Source:stackexchange.com