In my symfony2 project, i use FosUserBundle, SonataUserBundle and SonataAdminBundle. I have my User entity in Application\Sonata\UserBundle\Entity\User for some reasons... that is linked to another entity "download" by a ManyToOne relation (one user can have many download).
Now i want to embed the user registration form and the download form (which contain 3 boolean to choose which file to download and a date) in one form, so people can register and fill the download form at the same time.
From what i have read, i have to create a new form type for the user registration, configure the form and override form handlers ( FosUserBundle documentation )
But i only want this functionality for a form in my download page, not in other registration form. How to separate these functionalities ?