I am working in Django project that need to have a form that the user can change the structure of the form, for example if the default form is
<form>
<input type="text" value="3">
</form>
the user can change it like
<form>
<input type="text" value="5">
<input type="text" value="6">
</form>
The user can add, edit or delete an input. I have seen on internet the django admin site but it change only the data.
Please, Help me