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