I have 2 models:
from django.db import models
class Category(models.Model):
icon = models.ImageField(upload_to = \'thing/icon/\')
image = models.ImageFi
Few minutes ago, searching how to solve a similar problem, I finally found a solution.
You actually have to follow @Matteo Scotuzzi answer as well, then
Inside admin.py located in the app your created those models, you have to declare as follows right bellow @Matteo snippet:
admin.site.register(Category, CategoryAdmin)
and that would be enough to make all "Things" appear in "Category" inside your Django Administration respective page which is "Category".