I want to know how I can connect 2 models to create a dropdown which is dependent on each other.
As of writing, these are my models for the videos:
class AMLVideo(models.Model):
LANGUAGE = (
('LAN', 'Language'),
('FR', 'French'),
('EN', 'English'),
('HIN', 'Hindi'),
('SPA', 'Spanish'),
('GER', 'German'),
)
LEVEL =
…
Top comments (0)