Django-Template based navigation and project structure
I am working on a Django project that is based on some common data structure but the data needs to be populated through different forms. For example WebForm_1 is based on Template_1 layout and logic, while WebForm_2 is based on Template_2 layout and logic. Yet data will be saved to the same database table. This concept applies to all forms that will be a part of the web application. So in order to achieve this, I am thinking of having a landing page which will have some brief information for each template. The navigation, home page and subsequent pages will be based on this template choice. 1) Is this the correct way of designing the project? 2) What would be the best and secure way of passing the template choice to ensure all CRUD is for that template only?
Thanks