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