Currently, I am working on a project with django and angular. My goal is to have django populate a value in the HTML template and then instruct Angular to use that value as the initial value for a model.
There are two main reasons I need this:
- Simplicity - The page does not currently utilize Angular, and I believe it would be easier to transition by implementing this approach.
- SEO - Some search engines struggle to read values that are populated in the DOM through Angular. While there are SEO solutions available for Angular, I am hoping there might be a simpler way?
I would greatly appreciate any assistance or insights you can provide :)