from django.contrib.contenttypes import generic
from django.contrib.contenttypes.models import ContentType
from django.db import models
-from django.template import add_to_builtins as register_templatetags
from philo.models.base import value_content_type_limiter, register_value_model
from philo.utils import fattr
+__all__ = ('Collection', 'CollectionMember')
+
+
class Collection(models.Model):
"""
Collections are curated ordered groupings of arbitrary models.
app_label = 'philo'
-register_templatetags('philo.templatetags.collections')
register_value_model(Collection)
\ No newline at end of file