I\'m new to django.
I\'m creating simple app in which I have users enter some data and view it later. I need to make django admin show to the user only the data she enter a
You'll have to save in the user to every item and query each item with that user as search criteria. You'll probably build a base model which all your other models will inherit from. To get you started take a look at row-level permissions in the admin.