[Answered ]-Python/Django application with dynamic model name (application reuse)

2👍

This is what abstract models are for. Define once, and all children will acquire the fields in the abstract model, plus be able to define additional fields.

Leave a comment