from django.db import models from rex.models.tools import UsefullLinksField class BasicModule(models.Model): comment = models.TextField() usefull_links = UsefullLinksField() # class Meta: # abstract = True