After I defined MyForm in the forms.py with a HiddenInput with dummy value, I want to render as forms as users I've in my database and with username as hidden input.
Template Django:
{% for username,time in llistat_usuaris.items %}
{{ form.as_p }} # HOW CAN I SET {{USERNAME}} as hidden value ??
{% endfor %}