Skip to content Skip to sidebar Skip to footer

Django-html: How Can I Allow Users To Add Additional Input Fields (ensuring They Are Not Required)? Something Like A + Button

Django-HTML: How can i allow users to add additional input fields (ensuring they are not required)? Something like a + button. I only want to display info 1. And only when users pr

Solution 1:

You can create a seprate Model called Info and add a ForeignKey relationship to a post, then the post author after its creation could add as many info objects as he would want.


Post a Comment for "Django-html: How Can I Allow Users To Add Additional Input Fields (ensuring They Are Not Required)? Something Like A + Button"