All Questions
1 question
0
votes
2
answers
2k
views
How to relate many-to-many relationship on same page in django-admin?
I am new to django and i am trying to create a simple blog application.
In my models.py i have defined 3 models for post, Commetns and tags.
models.py
from django.db import models
from django....