2👍
First you have a form.save(commit=false)
in your view without saving it later, thats mean the data is never saved into the model.
Second in your template config.html the form action is empty <form method='POST' action=''>
change for <form method='POST' action='.'>
I hope that help to you.
Source:stackexchange.com