I created many-to-many connection in models.py between two tables and the third one appeared. I've stuck into the problem that i dont know how to add some info to this table.
I've been trying to import this table in shell mode but i dont know how to do it. For instance, to change table based on class 'User' i wrote:
from club.models import User
new = User(name='Maksym')
new.save()
So i'm interested in how to add some info in the table 'club_event1_users', i have attached screenshots
