I am trying to implement the following setup:
I have 5 different Apps. All 5 are part of one project.
I am trying to extract all the common elements these different apps have.
Than I want to make those elements variables that I can than make the view.py paste into templates I create.
So I have templates that have variables in it like {{ title }}, {{ text }} etc...
BUT Now every on of these 5 Apps has a different title:
e.g
App1 Title App2 Title App3 Title App5 Title
and
different texts
e.g.
Description 1: .. Description 2: .. Description 3: .. Description 4: .. Description 5: ..
My conceptual problem is. How do I store those in the same db, so I can access is the easiest possible way?
Am I terribly wrong or is this a viable way and if so please tell me how I can accomplish this.
Thanks for the time.